Merge pull request #56 from rhencke/fix-test
Fix double-free in unit test on Windows.
This commit is contained in:
commit
0ae958f933
@ -635,7 +635,8 @@ static void GetFiles(const string& pattern, vector<string>* files) {
|
|||||||
do {
|
do {
|
||||||
files->push_back(dirname + data.cFileName);
|
files->push_back(dirname + data.cFileName);
|
||||||
} while (FindNextFileA(handle, &data));
|
} while (FindNextFileA(handle, &data));
|
||||||
LOG_SYSRESULT(FindClose(handle));
|
BOOL result = FindClose(handle);
|
||||||
|
LOG_SYSRESULT(result);
|
||||||
#else
|
#else
|
||||||
# error There is no way to do glob.
|
# error There is no way to do glob.
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user