We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 4a03bd0 commit 57b9c34Copy full SHA for 57b9c34
src/core/qgsgeometry.cpp
@@ -2096,9 +2096,11 @@ bool QgsGeometry::contains(QgsPoint* p) const
2096
2097
geos::Point* geosPoint = geosGeometryFactory->createPoint(geos::Coordinate(p->x(), p->y()));
2098
2099
- return mGeos->contains(geosPoint);
+ returnval = mGeos->contains(geosPoint);
2100
2101
delete geosPoint;
2102
+
2103
+ return returnval;
2104
}
2105
2106
0 commit comments