[SCM] PostGIS branch master updated. 3.6.0rc2-468-g123d16873

git at osgeo.org git at osgeo.org
Fri Apr 17 00:13:18 PDT 2026


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  123d1687331c22066c5e8c901e5a2c7cd46c0ba8 (commit)
      from  2d1da1051f12c36419003b43ec5139143ce61993 (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 123d1687331c22066c5e8c901e5a2c7cd46c0ba8
Author: Sandro Santilli <strk at kbt.io>
Date:   Fri Apr 17 07:49:40 2026 +0200

    Use 64bit of precision in the topo CCW test
    
    It seems to be enough precision, including on MacOS and windows

diff --git a/liblwgeom/topo/lwgeom_topo.c b/liblwgeom/topo/lwgeom_topo.c
index e101c3664..584b4d210 100644
--- a/liblwgeom/topo/lwgeom_topo.c
+++ b/liblwgeom/topo/lwgeom_topo.c
@@ -1902,7 +1902,7 @@ lwt_IsTopoRingCCW(const LWGEOM *lwg)
   if (! pa || pa->npoints < 3 )
     return 0;
 
-  mpf_init2(sum, 128);
+  mpf_init2(sum, 64);
   mpf_init2(tmp, 64);
   mpf_set_d(sum, 0.0);
 

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

Summary of changes:
 liblwgeom/topo/lwgeom_topo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list