remove BSD-isms from filepath case convertion

This commit is contained in:
Alexander Arkhipov 2022-12-31 18:32:49 +03:00
parent 39d6d66e67
commit ee51c38a50
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@ void compat_windows_path_to_native(char* path)
for (;;) {
if (!(de = readdir(d)))
break;
if (de->d_namlen == n && strncasecmp(pch, de->d_name, n) == 0) {
if (strlen(de->d_name) == n && strncasecmp(pch, de->d_name, n) == 0) {
strncpy(pch, de->d_name, n);
break;
}