From e52e418bddd4170e73291dbb0260a8effb814374 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Thu, 27 Feb 2020 19:53:15 +0100 Subject: [PATCH] * src/convert.c (convert_cleanup): Only compile for DEBUG_MALLOC or TESTING --- src/convert.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/convert.c b/src/convert.c index 89b8f4a3..cadc1ee2 100644 --- a/src/convert.c +++ b/src/convert.c @@ -1029,6 +1029,7 @@ static void downloaded_files_free (void); /* Cleanup the data structures associated with this file. */ +#if defined DEBUG_MALLOC || defined TESTING void convert_cleanup (void) { @@ -1050,6 +1051,7 @@ convert_cleanup (void) if (converted_files) string_set_free (converted_files); } +#endif /* Book-keeping code for downloaded files that enables extension hacks. */