Coverity: fix memory leak in guestfish.
authorRichard W.M. Jones <rjones@redhat.com>
Tue, 23 Aug 2011 18:26:35 +0000 (19:26 +0100)
committerRichard W.M. Jones <rjones@redhat.com>
Fri, 16 Sep 2011 15:15:35 +0000 (16:15 +0100)
(cherry picked from commit c38cb92ec478c4dca83e4d38963720f463d52314)

fish/fish.c

index 4f1dfc9..71153eb 100644 (file)
@@ -1245,9 +1245,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;
     }