aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.c
diff options
context:
space:
mode:
authormorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2008-04-29 15:29:02 +0000
committermorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2008-04-29 15:29:02 +0000
commit48d520d20419237c9851cb5a361be16e7708ab94 (patch)
tree1a2ba7f889179c75427a28442a0924e8ac1ae2af /epan/epan.c
parent9189973680282569b209906157819f65ee2e9c76 (diff)
Call se_free_all() in epan_cleanup() so that we will detect per-session (se_)
memory corruption in tshark (and Wireshark when exiting the program instead of loading a new file?). Why this wasn't always here I don't know. This may give us a pile of buildbot fuzz failures but that's a Good Thing. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25196 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/epan.c')
-rw-r--r--epan/epan.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/epan.c b/epan/epan.c
index 1c1c49f792..e981d48082 100644
--- a/epan/epan.c
+++ b/epan/epan.c
@@ -107,6 +107,7 @@ epan_init(void (*register_all_protocols)(register_cb cb, gpointer client_data),
void
epan_cleanup(void)
{
+ se_free_all();
expert_cleanup();
dfilter_cleanup();
proto_cleanup();