From: Richard W.M. Jones Date: Wed, 8 Jun 2011 21:38:53 +0000 (+0100) Subject: Coverity: Missing return on error path. X-Git-Tag: 1.10.4~5 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;ds=sidebyside;h=6399b416ad79fb2727cf1054b64032d401019b0d;p=libguestfs.git Coverity: Missing return on error path. (cherry picked from commit 7a091a11d7aeddc170e4d1b833fd9d7d18c00841) --- diff --git a/daemon/guestfsd.c b/daemon/guestfsd.c index 448f3b4..ceadfdb 100644 --- a/daemon/guestfsd.c +++ b/daemon/guestfsd.c @@ -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;