From: Richard Jones Date: Fri, 7 May 2010 21:50:22 +0000 (+0100) Subject: daemon: Use parens around code section for safety. X-Git-Tag: 1.3.11~15 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=63882fb2201c834db57c9b9287ff9349310f7dde;hp=fc6dd9daa13ac774156d0822b5aa7830171feb85 daemon: Use parens around code section for safety. --- diff --git a/daemon/guestfsd.c b/daemon/guestfsd.c index cd51f44..ef28d9b 100644 --- a/daemon/guestfsd.c +++ b/daemon/guestfsd.c @@ -781,9 +781,10 @@ commandrvf (char **stdoutput, char **stderror, int flags, dup2 (stdin_fd[0], 0); close (stdin_fd[0]); close (stdin_fd[1]); - } else + } else { /* Set stdin to /dev/null (ignore failure) */ open ("/dev/null", O_RDONLY); + } close (so_fd[0]); close (se_fd[0]); if (!(flags & COMMAND_FLAG_FOLD_STDOUT_ON_STDERR))