From fb842ac9715dbc81f1c960b0e5d02c0b2a9ea2d4 Mon Sep 17 00:00:00 2001 From: Thomas Beutlich Date: Tue, 13 Aug 2024 12:03:36 +0200 Subject: [PATCH] Remove USE_DBMALLOC completely In addition to 6a69e2794a99c70461327e4ceb4350dd2dbe57ef where USE_DBMALLOC was removed from shapefil.h --- shpdump.c | 4 ---- shptest.c | 4 ---- shptreedump.c | 4 ---- 3 files changed, 12 deletions(-) diff --git a/shpdump.c b/shpdump.c index 153caaa..6fb665e 100644 --- a/shpdump.c +++ b/shpdump.c @@ -175,9 +175,5 @@ int main(int argc, char **argv) printf("%d object has invalid ring orderings.\n", nInvalidCount); } -#ifdef USE_DBMALLOC - malloc_dump(2); -#endif - exit(0); } diff --git a/shptest.c b/shptest.c index 5d08faa..ce0a60b 100644 --- a/shptest.c +++ b/shptest.c @@ -249,9 +249,5 @@ int main(int argc, char **argv) exit(10); } -#ifdef USE_DBMALLOC - malloc_dump(2); -#endif - exit(0); } diff --git a/shptreedump.c b/shptreedump.c index c905cbc..bdd21ad 100644 --- a/shptreedump.c +++ b/shptreedump.c @@ -201,10 +201,6 @@ int main(int argc, char **argv) SHPClose(hSHP); -#ifdef USE_DBMALLOC - malloc_dump(2); -#endif - exit(0); }