aboutsummaryrefslogtreecommitdiffstats
path: root/tshark.c
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2017-02-03 23:15:56 +0100
committerMichael Mann <mmann78@netscape.net>2017-02-10 13:34:56 +0000
commit9ced31a2d7a78e22454aba5fa1a0f2655e2a57cf (patch)
treee9aab4f6751f3c9c187b805a23138278e3ff154c /tshark.c
parent59fc668845e57cf988226c3c19984c8bd83458d3 (diff)
filter_list: add cleanup function and call it on exit.
Change-Id: I51d8074cc5a63d4fd3af8852df120d6b4163217f Reviewed-on: https://code.wireshark.org/review/19942 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'tshark.c')
-rw-r--r--tshark.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tshark.c b/tshark.c
index d883e02d9b..8570d3497f 100644
--- a/tshark.c
+++ b/tshark.c
@@ -2201,6 +2201,7 @@ clean_exit:
capture_opts_cleanup(&global_capture_opts);
#endif
col_cleanup(&cfile.cinfo);
+ free_filter_lists();
return exit_status;
}