shell32/tests: Close find file handle (Valgrind).

This commit is contained in:
Nikolay Sivov 2011-01-20 01:46:49 +03:00 committed by Alexandre Julliard
parent 2d542fa752
commit 1413e1d6d8
1 changed files with 1 additions and 0 deletions

View File

@ -56,6 +56,7 @@ static int get_number_of_folders(LPCSTR path)
}
while (FindNextFile(find_handle, &find_data) != 0);
FindClose(find_handle);
return number_of_folders;
}