[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0alpha1-76-g2316ccccf

git at osgeo.org git at osgeo.org
Thu Jun 16 08:24:33 PDT 2022


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  2316ccccf74aa3dd4f7a7e8a21f818f3001a074f (commit)
      from  63a63afce98f47e50131ae04c5d963a650e5a17e (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 2316ccccf74aa3dd4f7a7e8a21f818f3001a074f
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Thu Jun 16 08:24:29 2022 -0700

    Replicate patch from  lbartoletti to fix cut/paste error

diff --git a/extensions/address_standardizer/std_pg_hash.c b/extensions/address_standardizer/std_pg_hash.c
index 06907af0f..f98ae4e9b 100644
--- a/extensions/address_standardizer/std_pg_hash.c
+++ b/extensions/address_standardizer/std_pg_hash.c
@@ -226,8 +226,8 @@ IsInStdPortalCache(StdPortalCache *STDCache,  char *lextab, char *gaztab, char *
     for (i=0; i<STD_CACHE_ITEMS; i++) {
         StdCacheItem *ci = &STDCache->StdCache[i];
         if (ci->lextab && !strcmp(ci->lextab, lextab) &&
-            ci->lextab && !strcmp(ci->gaztab, gaztab) &&
-            ci->lextab && !strcmp(ci->rultab, rultab))
+            ci->gaztab && !strcmp(ci->gaztab, gaztab) &&
+            ci->rultab && !strcmp(ci->rultab, rultab))
                 return TRUE;
     }
 

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

Summary of changes:
 extensions/address_standardizer/std_pg_hash.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list