Skip to content

Commit 6d3dd57

Browse files
committed
Fix Coverity Scan warnings
1 parent 25a0338 commit 6d3dd57

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

autotest/cpp/testfloat16.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ TEST(TestFloat16, math)
144144
if (x >= 0)
145145
{
146146
using std::sqrt;
147+
// coverity[negative_returns]
147148
EXPECT_NEAR(sqrt(GFloat16(x)), sqrt(x), fabs(sqrt(x) / 1024));
148149
}
149150
}

gcore/gdalalgorithm.h

+15-1
Original file line numberDiff line numberDiff line change
@@ -1058,7 +1058,21 @@ class CPL_DLL GDALAlgorithmArg /* non-final */
10581058
!std::is_same_v<T, std::vector<GDALArgDatasetValue>>)
10591059
{
10601060
if (decl.HasDefaultValue())
1061-
*std::get<T *>(m_value) = decl.GetDefault<T>();
1061+
{
1062+
try
1063+
{
1064+
*std::get<T *>(m_value) = decl.GetDefault<T>();
1065+
}
1066+
catch (const std::bad_variant_access &e)
1067+
{
1068+
// I don't think that can happen, but Coverity Scan thinks
1069+
// so
1070+
CPLError(CE_Failure, CPLE_AppDefined,
1071+
"*std::get<T *>(m_value) = decl.GetDefault<T>() "
1072+
"failed: %s",
1073+
e.what());
1074+
}
1075+
}
10621076
}
10631077
}
10641078

ogr/ogrsf_frmts/ngw/gdalngwdataset.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1738,7 +1738,7 @@ bool OGRNGWDataset::AddFieldDomain(std::unique_ptr<OGRFieldDomain> &&domain,
17381738
}
17391739

17401740
auto osPalyload = CreateNGWLookupTableJson(
1741-
dynamic_cast<OGRCodedFieldDomain *>(domain.get()),
1741+
static_cast<OGRCodedFieldDomain *>(domain.get()),
17421742
static_cast<GIntBig>(std::stol(osResourceId)));
17431743

17441744
std::string osResourceIdInt =
@@ -1801,7 +1801,7 @@ bool OGRNGWDataset::UpdateFieldDomain(std::unique_ptr<OGRFieldDomain> &&domain,
18011801
}
18021802

18031803
auto osPayload = CreateNGWLookupTableJson(
1804-
dynamic_cast<const OGRCodedFieldDomain *>(domain.get()),
1804+
static_cast<const OGRCodedFieldDomain *>(domain.get()),
18051805
static_cast<GIntBig>(std::stol(osResourceId)));
18061806

18071807
if (!NGWAPI::UpdateResource(osUrl, osResourceId, osPayload, GetHeaders()))
@@ -1859,4 +1859,4 @@ GIntBig OGRNGWDataset::GetDomainIdByName(const std::string &osDomainName) const
18591859
}
18601860
}
18611861
return 0L;
1862-
}
1862+
}

0 commit comments

Comments
 (0)