[SCM] PostGIS branch master updated. 3.4.0rc1-857-gbfc8cd7e6

git at osgeo.org git at osgeo.org
Wed Dec 20 00:29:23 PST 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  bfc8cd7e619153504cd7bd0e0ab4c0717c33a29b (commit)
      from  3a2bfd938224dd7a01efb2d73fa5ace120df4ce3 (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 bfc8cd7e619153504cd7bd0e0ab4c0717c33a29b
Author: Regina Obe <lr at pcorp.us>
Date:   Wed Dec 20 03:26:57 2023 -0500

    Fix for postgis raster PG 16 guc
    References #5648 for PostGIS 3.5.0
    patch from Ronan Dunklau

diff --git a/libpgcommon/lwgeom_pg.c b/libpgcommon/lwgeom_pg.c
index 4a5a99d4f..f813f476b 100644
--- a/libpgcommon/lwgeom_pg.c
+++ b/libpgcommon/lwgeom_pg.c
@@ -508,7 +508,7 @@ postgis_guc_find_option(const char *name)
 	 * the name field is first in config_generic.
 	 */
 #if POSTGIS_PGSQL_VERSION >= 160
-	res = (struct config_generic **) find_option((void *) &key, false, true, ERROR);
+	res = (struct config_generic **) find_option((void *) name, false, true, ERROR);
 #else
 	res = (struct config_generic **) bsearch((void *) &key,
 		 (void *) get_guc_variables(),

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

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


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list