Skip to content

Commit fe25f91

Browse files
committed
OGRGeomFieldDefn copy cstor: avoid false positive warnings with cppcheck master, and add testing
1 parent 93878ec commit fe25f91

File tree

2 files changed

+39
-4
lines changed

2 files changed

+39
-4
lines changed

autotest/cpp/test_ogr.cpp

+30
Original file line numberDiff line numberDiff line change
@@ -2483,6 +2483,36 @@ TEST_F(test_ogr, feature_defn_geomfields_iterator)
24832483
EXPECT_EQ(i, oFDefn.GetGeomFieldCount());
24842484
}
24852485

2486+
// Test OGRGeomFieldDefn copy constructor
2487+
TEST_F(test_ogr, geom_field_defn_copy_constructor)
2488+
{
2489+
{
2490+
OGRGeomFieldDefn oGeomFieldDefn("field1", wkbPoint);
2491+
oGeomFieldDefn.SetNullable(false);
2492+
OGRGeomFieldDefn oGeomFieldDefn2("field2", wkbLineString);
2493+
oGeomFieldDefn2 = oGeomFieldDefn;
2494+
EXPECT_TRUE(oGeomFieldDefn2.IsSame(&oGeomFieldDefn));
2495+
}
2496+
2497+
{
2498+
OGRSpatialReference oSRS;
2499+
oSRS.SetFromUserInput("WGS84");
2500+
EXPECT_EQ(oSRS.GetReferenceCount(), 1);
2501+
OGRGeomFieldDefn oGeomFieldDefn("field1", wkbPoint);
2502+
oGeomFieldDefn.SetSpatialRef(&oSRS);
2503+
EXPECT_EQ(oSRS.GetReferenceCount(), 2);
2504+
OGRGeomFieldDefn oGeomFieldDefn2("field2", wkbLineString);
2505+
oGeomFieldDefn2 = oGeomFieldDefn;
2506+
EXPECT_EQ(oSRS.GetReferenceCount(), 3);
2507+
EXPECT_TRUE(oGeomFieldDefn2.IsSame(&oGeomFieldDefn));
2508+
2509+
// oGeomFieldDefn2 already points to oSRS
2510+
oGeomFieldDefn2 = oGeomFieldDefn;
2511+
EXPECT_EQ(oSRS.GetReferenceCount(), 3);
2512+
EXPECT_TRUE(oGeomFieldDefn2.IsSame(&oGeomFieldDefn));
2513+
}
2514+
}
2515+
24862516
// Test GDALDataset QueryLoggerFunc callback
24872517
TEST_F(test_ogr, GDALDatasetSetQueryLoggerFunc)
24882518
{

ogr/ogrgeomfielddefn.cpp

+9-4
Original file line numberDiff line numberDiff line change
@@ -157,10 +157,15 @@ OGRGeomFieldDefn &OGRGeomFieldDefn::operator=(const OGRGeomFieldDefn &oOther)
157157
{
158158
if (&oOther != this)
159159
{
160-
SetName(oOther.pszName);
161-
SetType(oOther.eGeomType);
162-
SetSpatialRef(oOther.poSRS);
163-
SetNullable(oOther.bNullable);
160+
CPLFree(pszName);
161+
pszName = CPLStrdup(oOther.pszName);
162+
eGeomType = oOther.eGeomType;
163+
if (oOther.poSRS)
164+
const_cast<OGRSpatialReference *>(oOther.poSRS)->Reference();
165+
if (poSRS)
166+
const_cast<OGRSpatialReference *>(poSRS)->Dereference();
167+
poSRS = oOther.poSRS;
168+
bNullable = oOther.bNullable;
164169
m_oCoordPrecision = oOther.m_oCoordPrecision;
165170
m_bSealed = oOther.m_bSealed;
166171
bIgnore = oOther.bIgnore;

0 commit comments

Comments
 (0)