Coverity: Missing return on error path.
authorRichard W.M. Jones <rjones@redhat.com>
Wed, 8 Jun 2011 21:38:53 +0000 (22:38 +0100)
committerRichard W.M. Jones <rjones@redhat.com>
Mon, 13 Jun 2011 13:12:13 +0000 (14:12 +0100)
(cherry picked from commit 7a091a11d7aeddc170e4d1b833fd9d7d18c00841)

daemon/guestfsd.c

index e18ab31..1fc3ce3 100644 (file)
@@ -444,6 +444,7 @@ add_string (char ***argv, int *size, int *alloc, const char *str)
     if (new_str == NULL) {
       reply_with_perror ("strdup");
       free_strings (*argv);
+      return -1;
     }
   } else
     new_str = NULL;