aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <gharris@sonic.net>2021-05-21 19:40:00 -0700
committerGuy Harris <gharris@sonic.net>2021-05-21 19:40:00 -0700
commitc22b857942ea3f123d9fa5c31e04e85c6f3928f5 (patch)
treec423d71adbf80a9dc0151a63aa6c69df107c31c0
parentf0abd29e48c1bd724efea606000b86356a764011 (diff)
fuzzshark: close a leak.
If init_progfile_dir() fails, it returns a g_mallocated string with an error message. After printing the error message, free the string.
-rw-r--r--fuzz/fuzzshark.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fuzz/fuzzshark.c b/fuzz/fuzzshark.c
index f7cefd98d0..17dcb8315e 100644
--- a/fuzz/fuzzshark.c
+++ b/fuzz/fuzzshark.c
@@ -250,8 +250,10 @@ fuzz_init(int argc _U_, char **argv)
* Attempt to get the pathname of the executable file.
*/
init_progfile_dir_error = init_progfile_dir(argv[0]);
- if (init_progfile_dir_error != NULL)
+ if (init_progfile_dir_error != NULL) {
fprintf(stderr, "fuzzshark: Can't get pathname of oss-fuzzshark program: %s.\n", init_progfile_dir_error);
+ g_free(init_progfile_dir_error);
+ }
/* Initialize the version information. */
ws_init_version_info("OSS Fuzzshark (Wireshark)", NULL,