We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 804fa14 commit 48ecd76Copy full SHA for 48ecd76
apps/gdalgetgdalpath.cpp
@@ -121,7 +121,7 @@ std::string GDALGetGDALPath()
121
if (VSIStatL(osBinFilename.c_str(), &sStat) == 0)
122
{
123
// Case if osGDALLib=/usr/lib/libgdal.so.xxx
124
- osPath = osBinFilename;
+ osPath = std::move(osBinFilename);
125
}
126
else
127
frmts/zarr/zarr_group.cpp
@@ -24,7 +24,7 @@
24
25
ZarrGroupBase::~ZarrGroupBase()
26
27
- ZarrGroupBase::Close();
+ CPL_IGNORE_RET_VAL(ZarrGroupBase::Close());
28
29
30
/************************************************************************/
0 commit comments