Skip to content

Commit 81f5b32

Browse files
committed
Fix error handling of readdir() port implementation on first file lookup
The implementation of readdir() in src/port/ which gets used by MSVC has been added in 399a36a, and since the beginning it considers all errors on the first file lookup as ENOENT, setting errno accordingly and letting the routine caller think that the directory is empty. While this is normally enough for the case of the backend, this can confuse callers of this routine on Windows as all errors would map to the same behavior. So, for example, even permission errors would be thought as having an empty directory, while there could be contents in it. This commit changes the error handling so as readdir() gets a behavior similar to native implementations: force errno=0 when seeing ERROR_FILE_NOT_FOUND as error and consider other errors as plain failures. While looking at the patch, I noticed that MinGW does not enforce errno=0 when looking at the first file, but it gets enforced on the next file lookups. A comment related to that was incorrect in the code. Reported-by: Yuri Kurenkov Diagnosed-by: Yuri Kurenkov, Grigory Smolkin Author: Konstantin Knizhnik Reviewed-by: Andrew Dunstan, Michael Paquier Discussion: https://postgr.es/m/2cad7829-8d66-e39c-b937-ac825db5203d@postgrespro.ru Backpatch-through: 9.4
1 parent 431471e commit 81f5b32

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/port/dirent.c

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,21 +84,23 @@ readdir(DIR *d)
8484
d->handle = FindFirstFile(d->dirname, &fd);
8585
if (d->handle == INVALID_HANDLE_VALUE)
8686
{
87-
errno = ENOENT;
87+
/* If there are no files, force errno=0 (unlike mingw) */
88+
if (GetLastError() == ERROR_FILE_NOT_FOUND)
89+
errno = 0;
90+
else
91+
_dosmaperr(GetLastError());
8892
return NULL;
8993
}
9094
}
9195
else
9296
{
9397
if (!FindNextFile(d->handle, &fd))
9498
{
99+
/* If there are no more files, force errno=0 (like mingw) */
95100
if (GetLastError() == ERROR_NO_MORE_FILES)
96-
{
97-
/* No more files, force errno=0 (unlike mingw) */
98101
errno = 0;
99-
return NULL;
100-
}
101-
_dosmaperr(GetLastError());
102+
else
103+
_dosmaperr(GetLastError());
102104
return NULL;
103105
}
104106
}

0 commit comments

Comments
 (0)