From: Richard W.M. Jones Date: Wed, 8 Jun 2011 21:07:36 +0000 (+0100) Subject: Coverity: Check return value of malloc. X-Git-Tag: 1.11.10~12 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=3a5bd5aba23583e64bfaabc906ca95b0f9d37578 Coverity: Check return value of malloc. --- diff --git a/daemon/glob.c b/daemon/glob.c index e94e4aa..f2815ec 100644 --- a/daemon/glob.c +++ b/daemon/glob.c @@ -40,6 +40,10 @@ do_glob_expand (const char *pattern) char **rv; rv = malloc (sizeof (char *) * 1); + if (rv == NULL) { + reply_with_perror ("malloc"); + return NULL; + } rv[0] = NULL; return rv; /* Caller frees. */ }