| Index: runtime/bin/file_linux.cc
|
| diff --git a/runtime/bin/file_linux.cc b/runtime/bin/file_linux.cc
|
| index 03dd50a1077758f4cf2f0058dbe35640f819bf23..3f93bd363da769344e250eecdf851119bcc9eb03 100644
|
| --- a/runtime/bin/file_linux.cc
|
| +++ b/runtime/bin/file_linux.cc
|
| @@ -140,7 +140,7 @@ File* File::OpenStdio(int fd) {
|
| bool File::Exists(const char* name) {
|
| struct stat st;
|
| if (TEMP_FAILURE_RETRY(stat(name, &st)) == 0) {
|
| - return S_ISREG(st.st_mode); // Deal with symlinks?
|
| + return S_ISREG(st.st_mode);
|
| } else {
|
| return false;
|
| }
|
|
|