[geos-commits] [SCM] GEOS branch 3.13 updated. fbe9180f7e7b027b00b29846ebc79ede1bf80a59

git at osgeo.org git at osgeo.org
Mon Jul 6 13:16:46 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.13 has been updated
       via  fbe9180f7e7b027b00b29846ebc79ede1bf80a59 (commit)
      from  4a31a2b4d3d17e01c028fe0539f2d0235bbd27f7 (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 fbe9180f7e7b027b00b29846ebc79ede1bf80a59
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 fceb29e2e..7ffbaf4ac 100644
--- a/util/geosop/GeosOp.cpp
+++ b/util/geosop/GeosOp.cpp
@@ -494,7 +494,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