Skip to content
Snippets Groups Projects
Commit 41abf472 authored by Cédric Traizet's avatar Cédric Traizet
Browse files

ENH: use std::vector instead of array to avoid potential memory leaks

parent 6cb740a8
No related branches found
No related tags found
No related merge requests found
......@@ -171,8 +171,9 @@ Projection::GCPParam GDALDatasetWrapper::GetGCPParam() const
void GDALDatasetWrapper::SetGCPParam(Projection::GCPParam gcpParam)
{
int nGCPCount = gcpParam.GCPs.size();
auto gcps = new GDAL_GCP[nGCPCount];
GDAL_GCP *gcpIt = gcps;
auto gcps = std::vector<GDAL_GCP>(nGCPCount);
auto gcpIt = gcps.begin();
for (auto otbGcpIt = gcpParam.GCPs.cbegin() ; otbGcpIt != gcpParam.GCPs.cend() ; ++otbGcpIt, gcpIt++)
{
GDAL_GCP gdalGcp;
......@@ -185,9 +186,7 @@ void GDALDatasetWrapper::SetGCPParam(Projection::GCPParam gcpParam)
gdalGcp.dfGCPZ = otbGcpIt->m_GCPZ;
*gcpIt = gdalGcp;
}
m_Dataset->SetGCPs(nGCPCount, gcps, gcpParam.GCPProjection.c_str());
// The GCPs are copied in the dataset.
delete[] gcps;
m_Dataset->SetGCPs(nGCPCount, gcps.data(), gcpParam.GCPProjection.c_str());
}
} // end namespace otb
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment