Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
use CPLFree on memory allocated by GDAL (fixes #7008)
  • Loading branch information
jef-n committed Jan 18, 2013
1 parent d36cd9a commit 087e929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/gdal/qgsgdalprovider.cpp
Expand Up @@ -2531,7 +2531,7 @@ QGISEXTERN QString helpCreationOptionsFormat( QString format )
if ( psCOL )
CPLDestroyXMLNode( psCOL );
if ( pszFormattedXML )
QgsFree( pszFormattedXML );
CPLFree( pszFormattedXML );
}
return message;
}
Expand Down

0 comments on commit 087e929

Please sign in to comment.