aboutsummaryrefslogtreecommitdiffstats
path: root/win32
diff options
context:
space:
mode:
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/win32/win32.c b/win32/win32.c
index 79df655e43..62c3076d73 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -4475,7 +4475,20 @@ static int
check_valid_dir(const WCHAR *path)
{
WIN32_FIND_DATAW fd;
- HANDLE fh = open_dir_handle(path, &fd);
+ HANDLE fh;
+ WCHAR full[MAX_PATH];
+ WCHAR *dmy;
+
+ /* if the specified path is the root of a drive and the drive is empty, */
+ /* FindFirstFile() returns INVALID_HANDLE_VALUE. */
+ if (!GetFullPathNameW(path, sizeof(full) / sizeof(WCHAR), full, &dmy)) {
+ errno = map_errno(GetLastError());
+ return -1;
+ }
+ if (GetDriveTypeW(full) != DRIVE_NO_ROOT_DIR)
+ return 0;
+
+ fh = open_dir_handle(path, &fd);
if (fh == INVALID_HANDLE_VALUE)
return -1;
FindClose(fh);