Skip to content

Commit 898e510

Browse files
author
jef
committed
use CPLFree on CPLMalloc'ed memory
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9971 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent da5f1ea commit 898e510

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/raster/qgsrasterlayer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1835,7 +1835,7 @@ bool QgsRasterLayer::identify( const QgsPoint& thePoint, QMap<QString, QString>&
18351835
}
18361836
theResults[tr( "Band%1" ).arg( i )] = v;
18371837

1838-
free( data );
1838+
CPLFree( data );
18391839
}
18401840
}
18411841

0 commit comments

Comments
 (0)