aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.c
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2017-02-21 16:37:29 +0100
committerDario Lombardo <lomato@gmail.com>2017-02-24 15:43:32 +0000
commite1282f28751fefc437280b4cb8b2e1b5df016752 (patch)
tree0d86c1bd08ad4e55732c05faea7fadecfc567148 /epan/epan.c
parent43487d825b9974c0406c940810e1afac371230df (diff)
dtd: free memory on shutdown.
Change-Id: I502e505730b9310066563bfd9c8df9fceddd0301 Reviewed-on: https://code.wireshark.org/review/20229 Reviewed-by: Peter Wu <peter@lekensteyn.nl> Petri-Dish: Peter Wu <peter@lekensteyn.nl> Petri-Dish: Dario Lombardo <lomato@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Dario Lombardo <lomato@gmail.com>
Diffstat (limited to 'epan/epan.c')
-rw-r--r--epan/epan.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/epan.c b/epan/epan.c
index e5f2bf4867..ff65ebf86b 100644
--- a/epan/epan.c
+++ b/epan/epan.c
@@ -65,6 +65,7 @@
#include "reassemble.h"
#include "srt_table.h"
#include "stats_tree.h"
+#include <dtd.h>
#ifdef HAVE_LUA
#include <lua.h>
@@ -225,6 +226,7 @@ epan_cleanup(void)
export_pdu_cleanup();
disabled_protos_cleanup();
stats_tree_cleanup();
+ dtd_location(NULL);
#ifdef HAVE_LUA
wslua_cleanup();
#endif