[postgis-tickets] r16458 - Fix fuzzer building since lwgeom uses GEOSNode()

Darafei komzpa at gmail.com
Tue Mar 13 10:39:16 PDT 2018


Author: komzpa
Date: 2018-03-13 10:39:15 -0700 (Tue, 13 Mar 2018)
New Revision: 16458

Modified:
   trunk/fuzzers/wkb_import_fuzzer.cpp
   trunk/fuzzers/wkt_import_fuzzer.cpp
Log:
Fix fuzzer building since lwgeom uses GEOSNode()

Patch by Even Rouault

Closes https://github.com/postgis/postgis/pull/232




Modified: trunk/fuzzers/wkb_import_fuzzer.cpp
===================================================================
--- trunk/fuzzers/wkb_import_fuzzer.cpp	2018-03-12 11:29:45 UTC (rev 16457)
+++ trunk/fuzzers/wkb_import_fuzzer.cpp	2018-03-13 17:39:15 UTC (rev 16458)
@@ -110,6 +110,7 @@
 void GEOSGeom_createLinearRing() { assert(0); }
 void GEOSGeomType() { assert(0); }
 void GEOSDelaunayTriangulation() { assert(0); }
+void GEOSNode() { assert(0); }
 
 void geod_init() { assert(0); }
 void geod_inverse() { assert(0); }

Modified: trunk/fuzzers/wkt_import_fuzzer.cpp
===================================================================
--- trunk/fuzzers/wkt_import_fuzzer.cpp	2018-03-12 11:29:45 UTC (rev 16457)
+++ trunk/fuzzers/wkt_import_fuzzer.cpp	2018-03-13 17:39:15 UTC (rev 16458)
@@ -110,6 +110,7 @@
 void GEOSGeom_createLinearRing() { assert(0); }
 void GEOSGeomType() { assert(0); }
 void GEOSDelaunayTriangulation() { assert(0); }
+void GEOSNode() { assert(0); }
 
 void geod_init() { assert(0); }
 void geod_inverse() { assert(0); }



More information about the postgis-tickets mailing list