[SCM] PostGIS branch stable-3.5 updated. 3.5.4-2-g66694dc2c

git at osgeo.org git at osgeo.org
Fri Oct 17 10:18:05 PDT 2025


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.5 has been updated
       via  66694dc2c2bad48c80f8230e091e616ce74ff07f (commit)
      from  e1c2815332b04b32b62b7eb29e3324549c5b54c1 (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 66694dc2c2bad48c80f8230e091e616ce74ff07f
Author: Pavel Seleznev <seleznev.p.n at sbertech.ru>
Date:   Wed Sep 10 16:51:35 2025 +0300

    Remove uninitialized variable warning

diff --git a/postgis/gserialized_estimate.c b/postgis/gserialized_estimate.c
index 453989585..24984e9d7 100644
--- a/postgis/gserialized_estimate.c
+++ b/postgis/gserialized_estimate.c
@@ -2601,7 +2601,7 @@ Datum gserialized_estimated_extent(PG_FUNCTION_ARGS)
 	int16 attnum, idx_attnum;
 	Oid atttypid = InvalidOid;
 	char nsp_tbl[2*NAMEDATALEN+6];
-	char *tbl;
+	char *tbl = NULL;
 	Oid tbl_oid, idx_oid = 0;
 	ND_STATS *nd_stats;
 	GBOX *gbox = NULL;

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

Summary of changes:
 postgis/gserialized_estimate.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list