зеркало из https://github.com/github/ruby.git
win32.c: check error code
* 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:
Родитель
a4804fbdf5
Коммит
23c86d84e6
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче