about summary refs log tree commit diff
path: root/Src/exec.c
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2000-05-04 13:40:05 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2000-05-04 13:40:05 +0000
commite7895ac92c8398b1c554e218c373316356ccbd19 (patch)
tree8fe7180ccc077b692f7436c210610d2921e40717 /Src/exec.c
parent9bbe45297c22d3979c935e412254d4ac376ca4bc (diff)
downloadzsh-e7895ac92c8398b1c554e218c373316356ccbd19.tar.gz
zsh-e7895ac92c8398b1c554e218c373316356ccbd19.tar.xz
zsh-e7895ac92c8398b1c554e218c373316356ccbd19.zip
close dump file descriptors in children (11151)
Diffstat (limited to 'Src/exec.c')
-rw-r--r--Src/exec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Src/exec.c b/Src/exec.c
index 33f28b53b..7913dec2e 100644
--- a/Src/exec.c
+++ b/Src/exec.c
@@ -356,6 +356,7 @@ zexecve(char *pth, char **argv)
     if (!*eep)
 	eep[1] = NULL;
     *eep = buf;
+    closedumps();
     execve(pth, argv, environ);
 
     /* If the execve returns (which in general shouldn't happen),   *