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.


(cherry picked from commit c22b857942)
This commit is contained in:
Guy Harris 2021-05-21 19:40:00 -07:00
parent 0e6c7c7bb2
commit d072335658
1 changed files with 3 additions and 1 deletions

View File

@ -266,8 +266,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,