diff options
-rw-r--r-- | lib/openat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/openat.c b/lib/openat.c index 2300208f8..1bd4d73c8 100644 --- a/lib/openat.c +++ b/lib/openat.c @@ -232,7 +232,7 @@ fdopendir (int fd) char *proc_file; BUILD_PROC_NAME (proc_file, fd, "."); dir = opendir (proc_file); - saved_errno = errno; + saved_errno = (dir == NULL ? errno : 0); /* If the syscall succeeded, or if it failed with an unexpected errno value, then return right away. Otherwise, fall through and resort to using save_cwd/restore_cwd. */ |