[SCM] PostGIS branch master updated. 3.5.0-288-g6bbb617ce
git at osgeo.org
git at osgeo.org
Mon Apr 28 02:08:38 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, master has been updated
via 6bbb617ced93dcb96733d534f0e59e846ce8cb08 (commit)
from d027c5f62ab4f63ca1618d27edc1c01ac70c9264 (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 6bbb617ced93dcb96733d534f0e59e846ce8cb08
Author: Sandro Santilli <strk at kbt.io>
Date: Mon Apr 28 11:08:30 2025 +0200
Fix 'return' with a value, in function returning void warning
diff --git a/liblwgeom/topo/lwgeom_topo.c b/liblwgeom/topo/lwgeom_topo.c
index 3d478f7f7..027392f6e 100644
--- a/liblwgeom/topo/lwgeom_topo.c
+++ b/liblwgeom/topo/lwgeom_topo.c
@@ -5199,7 +5199,7 @@ _lwt_GetEqualEdge( LWT_TOPOLOGY *topo, LWLINE *edge, int *forward )
* TODO: check that the motion range does not contain any node
*
*/
-static void
+static int
_lwt_SnapEdge_checkMotion( LWT_TOPOLOGY* topo, const LWCOLLECTION *splitC, const LWT_ISO_EDGE *edge, LWT_ISO_EDGE *existingEdge, const LWT_NODE_EDGES *splitNodeEdges )
{
// build the motion range shape: splitC->geoms[0] + splitC->geoms[1] - edge->geom
@@ -5280,6 +5280,8 @@ _lwt_SnapEdge_checkMotion( LWT_TOPOLOGY* topo, const LWCOLLECTION *splitC, const
if ( motionPolyG ) GEOSGeom_destroy(motionPolyG);
lwgeom_free(motionPoly);
+
+ return 0;
}
static int
-----------------------------------------------------------------------
Summary of changes:
liblwgeom/topo/lwgeom_topo.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list