From 02d50a54a84f192bc6a7f8ab068db54ea36a511c Mon Sep 17 00:00:00 2001 From: Evan Huus Date: Mon, 22 Sep 2014 16:55:32 -0400 Subject: Ensure pcapng application name is dynamically allocated I was hasty with my original fix... Change-Id: I339994c1afc34274a5d73eff98c4ebbf030e0f36 Reviewed-on: https://code.wireshark.org/review/4255 Reviewed-by: Evan Huus --- file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'file.c') diff --git a/file.c b/file.c index 7b937285d4..b73b598d7c 100644 --- a/file.c +++ b/file.c @@ -1363,7 +1363,7 @@ cf_merge_files(char **out_filenamep, int in_file_count, /* description of the hardware used to create this section. */ shb_hdr->shb_os = NULL; /* NULL if not available, UTF-8 string containing the name */ /* of the operating system used to create this section. */ - shb_hdr->shb_user_appl = "Wireshark"; /* NULL if not available, UTF-8 string containing the name */ + shb_hdr->shb_user_appl = g_strdup("Wireshark"); /* NULL if not available, UTF-8 string containing the name */ /* of the application used to create this section. */ /* create fake IDB info */ -- cgit v1.2.3