aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dfilter/dfilter.c
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2017-02-02 16:43:22 +0100
committerMichael Mann <mmann78@netscape.net>2017-02-03 02:38:20 +0000
commit7c69ae929dbe39b3fa94034dec65198d39111166 (patch)
tree93236d73d30628a8ba99ac078af81465b2c97ef4 /epan/dfilter/dfilter.c
parent370d13026a4c6abf23178681ea27f438f0daa5b6 (diff)
dfilter-macro: add cleanup routine.
Change-Id: I3de59c0366e9bec058de144eb136abaca24b5911 Reviewed-on: https://code.wireshark.org/review/19918 Petri-Dish: Dario Lombardo <lomato@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dfilter/dfilter.c')
-rw-r--r--epan/dfilter/dfilter.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/dfilter/dfilter.c b/epan/dfilter/dfilter.c
index 98f16a8f71..c9b24779a5 100644
--- a/epan/dfilter/dfilter.c
+++ b/epan/dfilter/dfilter.c
@@ -90,6 +90,8 @@ dfilter_init(void)
void
dfilter_cleanup(void)
{
+ dfilter_macro_cleanup();
+
/* Free the Lemon Parser object */
if (ParserObj) {
DfilterFree(ParserObj, g_free);