summaryrefslogtreecommitdiff
path: root/io
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2010-02-10 20:31:48 -0800
committerPetr Baudis <pasky@ucw.cz>2010-05-12 01:56:33 +0200
commit69ad8afe74aa5a0aa727553e010ad0dded7721dd (patch)
tree80d227842f59cff1d944f7e7b732fb34d96f8391 /io
parentc648b3046e619146357f706a1d0ccced601e039f (diff)
Fix file descriotor leak in nftw with FTW_CHDIR
(cherry picked from commit 247fdf2e2b798378d8aeaac1ee6f4ba0a49f31f3)
Diffstat (limited to 'io')
-rw-r--r--io/ftw.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/io/ftw.c b/io/ftw.c
index 9cc09077ed..bb7dba8ca8 100644
--- a/io/ftw.c
+++ b/io/ftw.c
@@ -1,5 +1,5 @@
/* File tree walker functions.
- Copyright (C) 1996-2004, 2006, 2007, 2008 Free Software Foundation, Inc.
+ Copyright (C) 1996-2004, 2006-2008, 2010 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
@@ -790,6 +790,7 @@ ftw_startup (const char *dir, int is_nftw, void *func, int descriptors,
{
int save_err = errno;
__fchdir (cwdfd);
+ close_not_cancel_no_status (cwdfd);
__set_errno (save_err);
}
else if (cwd != NULL)