Merge release branch 8.0.0 into develop
Release action.
Merge request reports
Activity
203 202 std::vector<otb::GDALDatasetWrapper::Pointer> m_DatasetList; 204 203 205 204 /** Pointer to the DEM dataset */ 206 GDALDataset * m_Dataset; 205 DatasetUPtr m_Dataset = DatasetUPtr(nullptr, [](GDALDataset* DS){GDALClose(DS);DS=nullptr;}); Don't we need to check the dataset isn't null before calling close?PS: no need to set the local parameter to null.
Edited by Luc HermitteThanks @lnicola. I wasn't sure!
changed milestone to %8.0.0
Please register or sign in to reply