aboutsummaryrefslogtreecommitdiffstats
path: root/dumpcap.c
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2017-01-25 10:16:35 +0100
committerDario Lombardo <lomato@gmail.com>2017-02-02 22:04:14 +0000
commit93a5c83f0a6e609ec4ba3e55872f9924d59ba38a (patch)
tree82850c6530ee1af7784ff0795ea134855758202c /dumpcap.c
parent844cf1ac9063553b08444c0d56b96ddf09fcc558 (diff)
capture_opts: free memory on exit to avoid leak.
This required a restyle of the way the different apps exit. Change-Id: Iedf728488954cc415b620ff0284d2e60f38f87d2 Reviewed-on: https://code.wireshark.org/review/19780 Reviewed-by: Peter Wu <peter@lekensteyn.nl> Reviewed-by: Dario Lombardo <lomato@gmail.com>
Diffstat (limited to 'dumpcap.c')
-rw-r--r--dumpcap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/dumpcap.c b/dumpcap.c
index 6f07b63225..56af89e9a6 100644
--- a/dumpcap.c
+++ b/dumpcap.c
@@ -1132,6 +1132,7 @@ exit_main(int status)
#endif /* _WIN32 */
+ capture_opts_cleanup(&global_capture_opts);
exit(status);
}