Skip to content

Commit

Permalink
use CPLFree on CPLMalloc'ed memory
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9971 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Jan 14, 2009
1 parent da5f1ea commit 898e510
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/raster/qgsrasterlayer.cpp
Expand Up @@ -1835,7 +1835,7 @@ bool QgsRasterLayer::identify( const QgsPoint& thePoint, QMap<QString, QString>&
}
theResults[tr( "Band%1" ).arg( i )] = v;

free( data );
CPLFree( data );
}
}

Expand Down

0 comments on commit 898e510

Please sign in to comment.