summaryrefslogtreecommitdiff
path: root/epan/epan.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2008-04-29 15:29:02 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2008-04-29 15:29:02 +0000
commit1c67ad6e2ee0103ba1d75f1267827a1256b266f9 (patch)
tree1a2ba7f889179c75427a28442a0924e8ac1ae2af /epan/epan.c
parent66608e788077b26879c31990637fe71f354a068e (diff)
downloadwireshark-1c67ad6e2ee0103ba1d75f1267827a1256b266f9.tar.gz
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. svn path=/trunk/; revision=25196
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();