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>
Thu, 9 Jun 2011 09:53:51 +0000 (10:53 +0100)
daemon/guestfsd.c

index 448f3b4..ceadfdb 100644 (file)
@@ -429,6 +429,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;