[geos-commits] [SCM] GEOS branch 3.9 updated. d6f53e6c6b5da324aeb7d84a6044012710926a26

git at osgeo.org git at osgeo.org
Thu Jun 15 09:14:11 PDT 2023


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.9 has been updated
       via  d6f53e6c6b5da324aeb7d84a6044012710926a26 (commit)
      from  8fd3b5f7127ab3e38fdc4621cf1aedcfbc165e57 (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 d6f53e6c6b5da324aeb7d84a6044012710926a26
Author: Sandro Santilli <strk at kbt.io>
Date:   Thu Jun 15 16:49:46 2023 +0200

    Do not hide illegal argument exception in HeuristicOverlay
    
    The change was accidentally introduced via commit c4aebbbc0
    Closes GH-925 in 3.9 branch

diff --git a/src/geom/HeuristicOverlay.cpp b/src/geom/HeuristicOverlay.cpp
index bb880023d..8806b9ebe 100644
--- a/src/geom/HeuristicOverlay.cpp
+++ b/src/geom/HeuristicOverlay.cpp
@@ -421,7 +421,7 @@ HeuristicOverlay(const Geometry* g0, const Geometry* g1, int opCode)
 
         return ret;
     }
-    catch(const std::exception& ex) {
+    catch(const geos::util::TopologyException& ex) {
         ::geos::ignore_unused_variable_warning(ex);
 
 #if GEOS_DEBUG_HEURISTICOVERLAY

-----------------------------------------------------------------------

Summary of changes:
 src/geom/HeuristicOverlay.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list