Skip to content

Commit

Permalink
Merge pull request git-for-windows#1908 from benpeart/FindFirstFileEx…
Browse files Browse the repository at this point in the history
…-gfw

fscache: use FindFirstFileExW to avoid retrieving the short name
  • Loading branch information
dscho committed Nov 19, 2018
2 parents 5e1c85e + 33609ae commit ecebea3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion compat/win32/fscache.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,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 */
Expand Down

0 comments on commit ecebea3

Please sign in to comment.