aboutsummaryrefslogtreecommitdiffstats
path: root/captype.c
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2017-02-08 14:25:57 +0100
committerMichael Mann <mmann78@netscape.net>2017-02-18 13:45:14 +0000
commit6d79055ba651c6f1e45b22960c5fd34c75c95133 (patch)
tree02b09c689172f03796eeee0dca4e664286b64a9b /captype.c
parent19b97fbfb0b7aac19c2a2817f4e2cc0f295d4352 (diff)
wsutil: remove leaks from filesystem and plugins code.
Change-Id: Iac2805c0130bd2ba6cdb3c9dd997050274d58d99 Reviewed-on: https://code.wireshark.org/review/20020 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'captype.c')
-rw-r--r--captype.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/captype.c b/captype.c
index 5858a392f8..8bff6f01b5 100644
--- a/captype.c
+++ b/captype.c
@@ -217,6 +217,10 @@ main(int argc, char *argv[])
}
wtap_cleanup();
+ free_progdirs();
+#ifdef HAVE_PLUGINS
+ plugins_cleanup();
+#endif
return overall_error_status;
}