Kaydet (Commit) 7011bf78 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:cstylecast: nop between pointer types of exactly same spelling

Change-Id: Idac7d377f3798a56d3fb32d8e3ec393bd2a53e9d
üst 00be1308
...@@ -303,7 +303,7 @@ void SAXHelper::endElement( const OUString& aName ) ...@@ -303,7 +303,7 @@ void SAXHelper::endElement( const OUString& aName )
if( fullname != NULL ) if( fullname != NULL )
{ {
xmlFree( ( xmlChar* )fullname ) ; xmlFree( fullname ) ;
fullname = NULL ; fullname = NULL ;
} }
} }
...@@ -362,13 +362,13 @@ void SAXHelper::processingInstruction( ...@@ -362,13 +362,13 @@ void SAXHelper::processingInstruction(
if( target != NULL ) if( target != NULL )
{ {
xmlFree( ( xmlChar* )target ) ; xmlFree( target ) ;
target = NULL ; target = NULL ;
} }
if( data != NULL ) if( data != NULL )
{ {
xmlFree( ( xmlChar* )data ) ; xmlFree( data ) ;
data = NULL ; data = NULL ;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment