[geos-commits] [SCM] GEOS branch main updated. 28726481ede802eee10a9585f9df781873242a71
git at osgeo.org
git at osgeo.org
Mon Jul 6 13:15:52 PDT 2026
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GEOS".
The branch, main has been updated
via 28726481ede802eee10a9585f9df781873242a71 (commit)
from 134a07c31971413b2f0f3eca9ee4561375a85285 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 28726481ede802eee10a9585f9df781873242a71
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date: Mon Jul 6 19:34:29 2026 +0000
Pass non-null dummy parameter (closes #1464)
diff --git a/util/geosop/GeosOp.cpp b/util/geosop/GeosOp.cpp
index b6c0d0a9f..3e91c1d3b 100644
--- a/util/geosop/GeosOp.cpp
+++ b/util/geosop/GeosOp.cpp
@@ -538,7 +538,7 @@ Result* GeosOp::executeOp(GeometryOp * op,
geos::util::Profile sw( "op" );
sw.start();
- Result* result = op->execute( *gA, *gB, opArgs.arg1, opArgs.arg2 );
+ Result* result = op->execute( *gA, gB ? *gB : *gA, opArgs.arg1, opArgs.arg2 );
sw.stop();
double time = sw.getTot();
totalTime += time;
-----------------------------------------------------------------------
Summary of changes:
util/geosop/GeosOp.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
GEOS
More information about the geos-commits
mailing list