зеркало из https://github.com/microsoft/git.git
Merge branch 'js/lstat-mingw-enotdir-fix' into maint
Fix to lstat() emulation on Windows. source: <pull.1291.v3.git.1659089152877.gitgitgadget@gmail.com> * js/lstat-mingw-enotdir-fix: lstat(mingw): correctly detect ENOTDIR scenarios
This commit is contained in:
Коммит
69c99b85e7
|
@ -768,8 +768,8 @@ static int has_valid_directory_prefix(wchar_t *wfilename)
|
|||
wfilename[n] = L'\0';
|
||||
attributes = GetFileAttributesW(wfilename);
|
||||
wfilename[n] = c;
|
||||
if (attributes == FILE_ATTRIBUTE_DIRECTORY ||
|
||||
attributes == FILE_ATTRIBUTE_DEVICE)
|
||||
if (attributes &
|
||||
(FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_DEVICE))
|
||||
return 1;
|
||||
if (attributes == INVALID_FILE_ATTRIBUTES)
|
||||
switch (GetLastError()) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче