aboutsummaryrefslogtreecommitdiffstats
path: root/src/callproc.c
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1996-05-15 14:32:37 +0000
committerKarl Heuer <[email protected]>1996-05-15 14:32:37 +0000
commit799abb26c3caaf7eb71c01c3bf11893ccdcc1abd (patch)
tree661b4a1cfab1ee13f46d7a41079f9cfdff95e7ef /src/callproc.c
parent9aa94bd50ca204c3549ee75c31bc970c1bf4b45d (diff)
(Fcall_process): Don't close the same fd twice.
Diffstat (limited to 'src/callproc.c')
-rw-r--r--src/callproc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callproc.c b/src/callproc.c
index 265d828772..4d84c98edb 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -458,7 +458,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
/* Close most of our fd's, but not fd[0]
since we will use that to read input from. */
close (filefd);
- if (fd1 >= 0)
+ if (fd1 >= 0 && fd1 != fd_error)
close (fd1);
}