diff options
-rw-r--r-- | xmlsecurity/source/xmlsec/saxhelper.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlsecurity/source/xmlsec/saxhelper.cxx b/xmlsecurity/source/xmlsec/saxhelper.cxx index be771e099251..b017efa2391b 100644 --- a/xmlsecurity/source/xmlsec/saxhelper.cxx +++ b/xmlsecurity/source/xmlsec/saxhelper.cxx @@ -303,7 +303,7 @@ void SAXHelper::endElement( const OUString& aName ) if( fullname != NULL ) { - xmlFree( ( xmlChar* )fullname ) ; + xmlFree( fullname ) ; fullname = NULL ; } } @@ -362,13 +362,13 @@ void SAXHelper::processingInstruction( if( target != NULL ) { - xmlFree( ( xmlChar* )target ) ; + xmlFree( target ) ; target = NULL ; } if( data != NULL ) { - xmlFree( ( xmlChar* )data ) ; + xmlFree( data ) ; data = NULL ; } } |