From 7011bf7817e1ed40c3c5a8020698996bf634045f Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 11 May 2015 12:51:47 +0200 Subject: loplugin:cstylecast: nop between pointer types of exactly same spelling Change-Id: Idac7d377f3798a56d3fb32d8e3ec393bd2a53e9d --- xmlsecurity/source/xmlsec/saxhelper.cxx | 6 +++--- 1 file 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 ; } } -- cgit