* win32/win32.c (w32_io_info): check GetFileInformationByHandleEx
  error code to fallback to GetFileInformationByHandle.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61077 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-12-08 06:20:06 +00:00
Родитель a4804fbdf5
Коммит 23c86d84e6
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -8050,7 +8050,12 @@ w32_io_info(VALUE *file, w32_io_info_t *st)
st->file_id_p = TRUE;
return ret;
}
/* may not work at files on network drives, fallback to old API. */
else if (GetLastError() != ERROR_INVALID_PARAMETER) {
CloseHandle(f);
return FALSE;
}
/* this API may not wrok at files on non Microsoft SMB
* server, fallback to old API then. */
}
if (GetFileInformationByHandle(f, &st->info.bhfi)) {
st->file_id_p = FALSE;