From b370790b101a115f443a55b96720e6a7f08763c4 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 23 Aug 2011 19:26:35 +0100 Subject: [PATCH] Coverity: fix memory leak in guestfish. (cherry picked from commit c38cb92ec478c4dca83e4d38963720f463d52314) --- fish/fish.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fish/fish.c b/fish/fish.c index c64b4be..575ee9c 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -1345,9 +1345,8 @@ parse_string_list (const char *str) /* We've reached the end of a token. We shouldn't still be in quotes. */ if (in_quote) { fprintf (stderr, _("Runaway quote in string \"%s\"\n"), str); - free_n_strings (argv, argv_len); - + free (tok); return NULL; } -- 1.8.3.1