fix memroy leak of fd at FindFirstFileW()

This commit is contained in:
weizhenwei 2017-06-13 16:46:37 +08:00
parent 2f96df25fa
commit 64fce8717f
1 changed files with 1 additions and 0 deletions

View File

@ -938,6 +938,7 @@ HANDLE FindFirstFileW(LPCWSTR lpFileName, LPWIN32_FIND_DATAW lpFindFileData)
}
}
free(fd);
return h;
}