diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2004-11-29 12:09:13 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2004-11-29 12:09:13 +0000 |
commit | d2c67e5e19953c2bee353635c3e8aec7c38f8d57 (patch) | |
tree | b67937542b8d5290bb1fa657236172651ee9e991 /Src/compat.c | |
parent | cebe5f1d10418b6fc7dec0eab5bfe5d62bd0bb74 (diff) | |
download | zsh-d2c67e5e19953c2bee353635c3e8aec7c38f8d57.tar.gz zsh-d2c67e5e19953c2bee353635c3e8aec7c38f8d57.tar.xz zsh-d2c67e5e19953c2bee353635c3e8aec7c38f8d57.zip |
20591: Stephane Chazelas: use of fchdir in zchdir leaked fd's
Diffstat (limited to 'Src/compat.c')
-rw-r--r-- | Src/compat.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Src/compat.c b/Src/compat.c index 2999e63e4..ba077d3a0 100644 --- a/Src/compat.c +++ b/Src/compat.c @@ -387,10 +387,14 @@ zchdir(char *dir) int currdir = -2; for (;;) { - if (!*dir) - return 0; - if (!chdir(dir)) + if (!*dir || !chdir(dir)) + { +#ifdef HAVE_FCHDIR + if (currdir >= 0) + close(currdir); +#endif return 0; + } if ((errno != ENAMETOOLONG && errno != ENOMEM) || strlen(dir) < PATH_MAX) break; |