[postgis-tickets] [SCM] PostGIS branch stable-3.3 updated. 3.3.3-20-g57d14f076

git at osgeo.org git at osgeo.org
Wed Jun 28 20:04:58 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 "PostGIS".

The branch, stable-3.3 has been updated
       via  57d14f076edf3af3894400f4e739b271d0a0a461 (commit)
      from  fbbf5fdda4e6cc69c7f110b90cb95d3e32de5d17 (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 57d14f076edf3af3894400f4e739b271d0a0a461
Author: Regina Obe <lr at pcorp.us>
Date:   Wed Jun 28 23:03:16 2023 -0400

    Prevent crash in mvt
    References #5385 for PostGIS 3.3.4

diff --git a/NEWS b/NEWS
index e2af982d6..381009f22 100644
--- a/NEWS
+++ b/NEWS
@@ -9,6 +9,9 @@ YYYY/MM/DD
   - #5410, [postgis_raster] ST_Value bilinear resample,
            don't throw an error if Band has no NODATA value
            (Regina Obe)
+  - #5385, Postgres malloc assertion fail when
+           using pg_cancel_backend with ST_AsMVT
+           (Regina Obe, Paul Ramsey)
 
 PostGIS 3.3.3
 2023/05/29
@@ -46,7 +49,6 @@ PostGIS 3.3.3
   - #5388, [postgis_tiger_geocoder] Fix faces table tiger_gload,
            caused census rerelease of faces data (Regina Obe)
 
-
 PostGIS 3.3.2
 2022/11/12
 This version requires PostgreSQL 11-15, GEOS 3.6 or higher, and Proj 5.2+
diff --git a/postgis/postgis_module.c b/postgis/postgis_module.c
index 807a7c0a0..9e7adb409 100644
--- a/postgis/postgis_module.c
+++ b/postgis/postgis_module.c
@@ -128,7 +128,8 @@ handleInterrupt(int sig)
   GEOS_interruptRequest();
 
 #ifdef HAVE_LIBPROTOBUF
-  lwgeom_wagyu_interruptRequest();
+	/* Taking out per #5385 crash */
+  //lwgeom_wagyu_interruptRequest();
 #endif
 
   /* request interruption of liblwgeom as well */
@@ -145,7 +146,8 @@ static void onExecutorStart(QueryDesc *queryDesc, int eflags) {
     GEOS_interruptCancel();
 
 #ifdef HAVE_LIBPROTOBUF
-    lwgeom_wagyu_interruptReset();
+		/* Taking out per #5385 crash */
+    //lwgeom_wagyu_interruptReset();
 #endif
 
     lwgeom_cancel_interrupt();

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

Summary of changes:
 NEWS                     | 4 +++-
 postgis/postgis_module.c | 6 ++++--
 2 files changed, 7 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list