Correctly check if a path is a directory. Fix by Brian Korver.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115991 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2010-10-07 22:05:57 +00:00
parent 7b172c6ae6
commit a98111cf15

View File

@ -439,7 +439,7 @@ Path::isDirectory() const {
struct stat buf;
if (0 != stat(path.c_str(), &buf))
return false;
return buf.st_mode & S_IFDIR ? true : false;
return ((buf.st_mode & S_IFMT) == S_IFDIR) ? true : false;
}
bool