From a3d3322a481e9f6ff40877504a273dea07a2d6dd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tim=20R=C3=BChsen?= <tim.ruehsen@gmx.de>
Date: Thu, 27 Feb 2020 19:51:55 +0100
Subject: [PATCH] * src/html-url.c (cleanup_html_url): Only compile for
 DEBUG_MALLOC or TESTING

---
 src/html-url.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/html-url.c b/src/html-url.c
index 9ed420fc..b80cf269 100644
--- a/src/html-url.c
+++ b/src/html-url.c
@@ -963,6 +963,7 @@ get_urls_file (const char *file)
   return head;
 }
 
+#if defined DEBUG_MALLOC || defined TESTING
 void
 cleanup_html_url (void)
 {
@@ -973,3 +974,4 @@ cleanup_html_url (void)
   if (interesting_attributes)
     hash_table_destroy (interesting_attributes);
 }
+#endif