summaryrefslogtreecommitdiff
path: root/epan/epan.c
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2017-01-16 22:08:12 +0100
committerMichael Mann <mmann78@netscape.net>2017-01-17 15:39:58 +0000
commitbaaff60b3be77a12f952b08b8d7b535f2f91949d (patch)
treeed280f2442aa485845dc02ff867f861b959b3a64 /epan/epan.c
parentbaf2612d9e23cb2d992f75b0a21e26a28f3985cc (diff)
downloadwireshark-baaff60b3be77a12f952b08b8d7b535f2f91949d.tar.gz
exported_object: add cleanup function.
Change-Id: If4c35d18db1dc982e981004838e0eabbf4479e78 Reviewed-on: https://code.wireshark.org/review/19653 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
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 cf578f1c69..0b12a690e7 100644
--- a/epan/epan.c
+++ b/epan/epan.c
@@ -55,6 +55,7 @@
#include "print.h"
#include "capture_dissectors.h"
#include "exported_pdu.h"
+#include "export_object.h"
#ifdef HAVE_LUA
#include <lua.h>
@@ -207,6 +208,7 @@ epan_cleanup(void)
expert_cleanup();
capture_dissector_cleanup();
export_pdu_cleanup();
+ export_object_cleanup();
#ifdef HAVE_LUA
wslua_cleanup();
#endif