[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-1052-gc4d01ce30
git at osgeo.org
git at osgeo.org
Wed Jun 28 15:46:51 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, master has been updated
via c4d01ce30b1a9bd9e706c20db9afea31c295a71d (commit)
from 47d8e9ee7c9eeb79e4e6b139e8417d48257bf564 (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 c4d01ce30b1a9bd9e706c20db9afea31c295a71d
Author: Regina Obe <lr at pcorp.us>
Date: Wed Jun 28 18:46:04 2023 -0400
Prevent crash in mvt
References #5385 for PostGIS 3.4.0
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:
postgis/postgis_module.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list