[geos-commits] [SCM] GEOS branch 3.12 updated. 69e0d518a60521a4bbc6b72f98718ea18d2b0fd7
git at osgeo.org
git at osgeo.org
Mon Jul 6 13:17:07 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, 3.12 has been updated
via 69e0d518a60521a4bbc6b72f98718ea18d2b0fd7 (commit)
from ef1e94327bfb9f9f1b175d8a85f8220f72497f41 (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 69e0d518a60521a4bbc6b72f98718ea18d2b0fd7
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 deb70b7d1..07268787a 100644
--- a/util/geosop/GeosOp.cpp
+++ b/util/geosop/GeosOp.cpp
@@ -488,7 +488,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