aboutsummaryrefslogtreecommitdiffstats
path: root/capture_opts.h
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 /capture_opts.h
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 'capture_opts.h')
-rw-r--r--capture_opts.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/capture_opts.h b/capture_opts.h
index 9a85526f45..c5ba0e2abb 100644
--- a/capture_opts.h
+++ b/capture_opts.h
@@ -326,6 +326,10 @@ typedef struct capture_options_tag {
extern void
capture_opts_init(capture_options *capture_opts);
+/* clean internal structures */
+extern void
+capture_opts_cleanup(capture_options *capture_opts);
+
/* set a command line option value */
extern int
capture_opts_add_opt(capture_options *capture_opts, int opt, const char *optarg, gboolean *start_capture);