diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2005-04-20 04:04:07 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2005-04-20 04:04:07 +0000 |
commit | 4619c75f640f0e47ec6b9f9253f95e4b40aad378 (patch) | |
tree | 5815c05b2ef4baa2837d4229f288932bc8f84c29 /lib/System/Unix/Path.inc | |
parent | 4b2afe63940fdc488b780bfff1204c594a9b7d31 (diff) |
Ignore dangling symlinks in getDirectoryContents()
Thanks to Markus Oberhumer for the patch!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21370 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Unix/Path.inc')
-rw-r--r-- | lib/System/Unix/Path.inc | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/System/Unix/Path.inc b/lib/System/Unix/Path.inc index e37741bc26..e55d9edcf2 100644 --- a/lib/System/Unix/Path.inc +++ b/lib/System/Unix/Path.inc @@ -398,17 +398,22 @@ Path::getDirectoryContents(std::set<Path>& result) const { result.clear(); struct dirent* de = ::readdir(direntries); - while (de != 0) { + for ( ; de != 0; de = ::readdir(direntries)) { if (de->d_name[0] != '.') { Path aPath(path + (const char*)de->d_name); struct stat buf; - if (0 != stat(aPath.path.c_str(), &buf)) + if (0 != stat(aPath.path.c_str(), &buf)) { + int saved_errno = errno; + struct stat st; + if (0 == lstat(aPath.path.c_str(), &st) && S_ISLNK(st.st_mode)) + continue; // dangling symlink -- ignore + errno = saved_errno; ThrowErrno(aPath.path + ": can't get status"); + } if (S_ISDIR(buf.st_mode)) aPath.path += "/"; result.insert(aPath); } - de = ::readdir(direntries); } closedir(direntries); |