summaryrefslogtreecommitdiff
path: root/extcap/ciscodump.c
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2017-01-07 00:14:23 +0100
committerDario Lombardo <lomato@gmail.com>2017-01-07 20:32:43 +0000
commit2009dcc98dc46712c8b64ae30408c4d53c64980b (patch)
treecd0deaf25fddb93c924dad3246e2ee7ccaaa9ec9 /extcap/ciscodump.c
parent03a8884989035400316b03913b68787c50308082 (diff)
downloadwireshark-2009dcc98dc46712c8b64ae30408c4d53c64980b.tar.gz
extcap: fix memleak via data_file_url
Commit v2.1.0rc0-2181-ga4e2263ac4 introduced a helppage parameter, but all callers were NULL. In a later change, callers would use the data_file_url() function, but this needs to be freed, so do that. Fixes: v2.3.0rc0-1825-ge5596b74bd ("extcap: set help page for all extcaps.") Change-Id: I967c0f8c6b50d9e78ac227575de24a81f97d376a Reviewed-on: https://code.wireshark.org/review/19570 Petri-Dish: Dario Lombardo <lomato@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Dario Lombardo <lomato@gmail.com>
Diffstat (limited to 'extcap/ciscodump.c')
-rw-r--r--extcap/ciscodump.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/extcap/ciscodump.c b/extcap/ciscodump.c
index 8f136e9c1e..dbd93afd98 100644
--- a/extcap/ciscodump.c
+++ b/extcap/ciscodump.c
@@ -532,6 +532,7 @@ int main(int argc, char **argv)
guint32 count = 0;
int ret = EXIT_FAILURE;
extcap_parameters * extcap_conf = g_new0(extcap_parameters, 1);
+ char* help_url;
char* help_header = NULL;
#ifdef _WIN32
@@ -540,8 +541,10 @@ int main(int argc, char **argv)
attach_parent_console();
#endif /* _WIN32 */
+ help_url = data_file_url("ciscodump.html");
extcap_base_set_util_info(extcap_conf, argv[0], CISCODUMP_VERSION_MAJOR, CISCODUMP_VERSION_MINOR,
- CISCODUMP_VERSION_RELEASE, data_file_url("ciscodump.html"));
+ CISCODUMP_VERSION_RELEASE, help_url);
+ g_free(help_url);
extcap_base_register_interface(extcap_conf, CISCODUMP_EXTCAP_INTERFACE, "Cisco remote capture", 147, "Remote capture dependent DLT");
help_header = g_strdup_printf(