git.annexia.org
/
libguestfs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
371eabf
)
daemon: Reset SIGPIPE to default before running subprocesses.
author
Richard W.M. Jones
<rjones@redhat.com>
Fri, 1 Apr 2011 14:26:46 +0000
(15:26 +0100)
committer
Richard W.M. Jones
<rjones@redhat.com>
Fri, 1 Apr 2011 15:05:30 +0000
(16:05 +0100)
daemon/guestfsd.c
patch
|
blob
|
history
diff --git
a/daemon/guestfsd.c
b/daemon/guestfsd.c
index
1af0f7a
..
3632889
100644
(file)
--- a/
daemon/guestfsd.c
+++ b/
daemon/guestfsd.c
@@
-679,6
+679,7
@@
commandrvf (char **stdoutput, char **stderror, int flags,
}
if (pid == 0) { /* Child process running the command. */
+ signal (SIGPIPE, SIG_DFL);
close (0);
if (flag_copy_stdin) {
dup2 (stdin_fd[0], 0);