aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.c
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2017-01-20 17:02:52 +0100
committerMichael Mann <mmann78@netscape.net>2017-01-21 00:28:28 +0000
commit317649f94984cf3d17f2a57badebb78d7703cdb5 (patch)
tree6a2c029b05e75c0934ccea4b1fc2d6bae0b3b2b6 /epan/epan.c
parentd020990f0356f4793e00209ae99e9f2dd7b843c9 (diff)
reassemble: add cleanup routine.
Change-Id: I948d342a29aacc2212076359e5b073113c50c5de Reviewed-on: https://code.wireshark.org/review/19697 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 10dba580f7..d667bba165 100644
--- a/epan/epan.c
+++ b/epan/epan.c
@@ -62,6 +62,7 @@
#include "decode_as.h"
#include "dissector_filters.h"
#include "conversation_table.h"
+#include "reassemble.h"
#ifdef HAVE_LUA
#include <lua.h>
@@ -213,6 +214,7 @@ epan_cleanup(void)
decode_clear_all();
conversation_table_cleanup();
conversation_filters_cleanup();
+ reassembly_table_cleanup();
packet_cleanup();
expert_cleanup();
capture_dissector_cleanup();