diff options
Diffstat (limited to 'gcc/cppfiles.c')
-rw-r--r-- | gcc/cppfiles.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/cppfiles.c b/gcc/cppfiles.c index dea6dd6..137882b 100644 --- a/gcc/cppfiles.c +++ b/gcc/cppfiles.c @@ -1027,6 +1027,12 @@ remove_component_p (path) result = stat (path, &s); #endif + /* There's no guarantee that errno will be unchanged, even on + success. Cygwin's lstat(), for example, will often set errno to + ENOSYS. In case of success, reset errno to zero. */ + if (result == 0) + errno = 0; + return result == 0 && S_ISDIR (s.st_mode); } |