From da9588d5ce598c63b8e25cdfed749f733f2e3d71 Mon Sep 17 00:00:00 2001 From: Darafei Praliaskouski Date: Tue, 13 Mar 2018 17:39:15 +0000 Subject: [PATCH] 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 --- fuzzers/wkb_import_fuzzer.cpp | 1 + fuzzers/wkt_import_fuzzer.cpp | 1 + 2 files changed, 2 insertions(+) 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); } -- 2.50.1