diff options
-rw-r--r-- | daemon/guestfsd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/daemon/guestfsd.c b/daemon/guestfsd.c index cd51f442..ef28d9b6 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)) |