aboutsummaryrefslogtreecommitdiffstats
path: root/lib/System/Unix
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-08-23 06:56:27 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-08-23 06:56:27 +0000
commit142ca8e81800ce6bcb511f3250bae23210d38ec8 (patch)
treeb5edc0d2bd5c9a7216da68213db868e669d7b757 /lib/System/Unix
parente5c9cb5eb6bce502faaedea04014dab46f6540f4 (diff)
downloadexternal_llvm-142ca8e81800ce6bcb511f3250bae23210d38ec8.zip
external_llvm-142ca8e81800ce6bcb511f3250bae23210d38ec8.tar.gz
external_llvm-142ca8e81800ce6bcb511f3250bae23210d38ec8.tar.bz2
For PR797:
Remove exception throwing from Path::getDirectoryContents and its users. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29841 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Unix')
-rw-r--r--lib/System/Unix/Path.inc13
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/System/Unix/Path.inc b/lib/System/Unix/Path.inc
index 7fc77a9..2b9f126 100644
--- a/lib/System/Unix/Path.inc
+++ b/lib/System/Unix/Path.inc
@@ -415,10 +415,12 @@ bool Path::makeExecutableOnDisk(std::string* ErrMsg) {
}
bool
-Path::getDirectoryContents(std::set<Path>& result) const {
+Path::getDirectoryContents(std::set<Path>& result, std::string* ErrMsg) const {
DIR* direntries = ::opendir(path.c_str());
- if (direntries == 0)
- ThrowErrno(path + ": can't open directory");
+ if (direntries == 0) {
+ MakeErrMsg(ErrMsg, path + ": can't open directory");
+ return true;
+ }
std::string dirPath = path;
if (!lastIsSlash(dirPath))
@@ -433,14 +435,15 @@ Path::getDirectoryContents(std::set<Path>& result) const {
if (0 != lstat(aPath.path.c_str(), &st)) {
if (S_ISLNK(st.st_mode))
continue; // dangling symlink -- ignore
- ThrowErrno(aPath.path + ": can't determine file object type");
+ MakeErrMsg(ErrMsg, aPath.path + ": can't determine file object type");
+ return true;
}
result.insert(aPath);
}
}
closedir(direntries);
- return true;
+ return false;
}
bool