Merge pull request #1908 from benpeart/FindFirstFileEx-gfw

fscache: use FindFirstFileExW to avoid retrieving the short name
This commit is contained in:
Johannes Schindelin 2018-11-05 13:53:07 +01:00 коммит произвёл Matthew John Cheetham
Родитель 0dc28741a4 40675f9973
Коммит 5dad60c9b7
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -208,7 +208,8 @@ static struct fsentry *fsentry_create_list(const struct fsentry *dir,
pattern[wlen] = 0;
/* open find handle */
h = FindFirstFileW(pattern, &fdata);
h = FindFirstFileExW(pattern, FindExInfoBasic, &fdata, FindExSearchNameMatch,
NULL, FIND_FIRST_EX_LARGE_FETCH);
if (h == INVALID_HANDLE_VALUE) {
err = GetLastError();
*dir_not_found = 1; /* or empty directory */