diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-10-18 15:35:09 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-10-18 15:35:09 +0000 |
commit | 74f7e7c0bd84e02763d0abd213990e5bf2466e47 (patch) | |
tree | 322b41e5cef5419c76baa27e451c1b7236ac984b /sysdeps/posix | |
parent | 67479a700e3bd2e52980c00ac35c888589ac0a36 (diff) | |
download | glibc-74f7e7c0bd84e02763d0abd213990e5bf2466e47.tar glibc-74f7e7c0bd84e02763d0abd213990e5bf2466e47.tar.gz glibc-74f7e7c0bd84e02763d0abd213990e5bf2466e47.tar.bz2 glibc-74f7e7c0bd84e02763d0abd213990e5bf2466e47.zip |
Update.
* sysdeps/posix/getcwd.c (__getcwd): Don't stop processing
directory entries when a lstat call fails.
Patch by Colin Plumb <colin@nyx.net>.
Diffstat (limited to 'sysdeps/posix')
-rw-r--r-- | sysdeps/posix/getcwd.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/sysdeps/posix/getcwd.c b/sysdeps/posix/getcwd.c index 7de5fd3a75..df48804f7a 100644 --- a/sysdeps/posix/getcwd.c +++ b/sysdeps/posix/getcwd.c @@ -333,14 +333,13 @@ __getcwd (buf, size) name[dotlist + dotsize - dotp] = '/'; strcpy (&name[dotlist + dotsize - dotp + 1], d->d_name); #endif - if (__lstat (name, &st) < 0) - { - int save = errno; - (void) __closedir (dirstream); - __set_errno (save); - goto lose; - } - if (st.st_dev == thisdev && st.st_ino == thisino) + /* We don't fail here if we cannot stat() a directory entry. + This can happen when (network) filesystems fail. If this + entry is in fact the one we are looking for we will find + out soon as we reach the end of the directory without + having found anything. */ + if (__lstat (name, &st) >= 0 + && st.st_dev == thisdev && st.st_ino == thisino) break; } } |