From: Darafei Praliaskouski Date: Tue, 13 Mar 2018 17:39:15 +0000 (+0000) Subject: Fix fuzzer building since lwgeom uses GEOSNode() X-Git-Tag: 2.5.0alpha~69 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=da9588d5ce598c63b8e25cdfed749f733f2e3d71;p=postgis Fix fuzzer building since lwgeom uses GEOSNode() Patch by Even Rouault Closes https://github.com/postgis/postgis/pull/232 git-svn-id: http://svn.osgeo.org/postgis/trunk@16458 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/fuzzers/wkb_import_fuzzer.cpp b/fuzzers/wkb_import_fuzzer.cpp index 7b77a8332..db85fab2b 100644 --- a/fuzzers/wkb_import_fuzzer.cpp +++ b/fuzzers/wkb_import_fuzzer.cpp @@ -110,6 +110,7 @@ void GEOSCoordSeq_getZ() { assert(0); } 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); } diff --git a/fuzzers/wkt_import_fuzzer.cpp b/fuzzers/wkt_import_fuzzer.cpp index 8bac9aed7..112ca7d0d 100644 --- a/fuzzers/wkt_import_fuzzer.cpp +++ b/fuzzers/wkt_import_fuzzer.cpp @@ -110,6 +110,7 @@ void GEOSCoordSeq_getZ() { assert(0); } 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); }