Fix Directory Open Check

This commit is contained in:
Nathan Franke 2020-07-06 01:17:16 -05:00
parent a8e330ea19
commit 09aeb7706b
No known key found for this signature in database
GPG key ID: CA9D4FC8EE0174FE
3 changed files with 30 additions and 18 deletions

View file

@ -67,7 +67,11 @@ Error DirAccessWindows::list_dir_begin() {
list_dir_end();
p->h = FindFirstFileExW((current_dir + "\\*").c_str(), FindExInfoStandard, &p->fu, FindExSearchNameMatch, nullptr, 0);
return (p->h == INVALID_HANDLE_VALUE) ? ERR_CANT_OPEN : OK;
if (p->h == INVALID_HANDLE_VALUE) {
return ERR_CANT_OPEN;
}
return OK;
}
String DirAccessWindows::get_next() {