iso9660: Fix bug where non rockridge filenames were not actually being loaded

This commit is contained in:
mintsuki 2021-06-22 12:36:45 +02:00
parent 7bf53f1406
commit ece3e9c099
1 changed files with 1 additions and 0 deletions

View File

@ -157,6 +157,7 @@ static bool load_name(char *buf, struct iso9660_directory_entry *entry) {
break;
if (entry->name[j] == '.' && entry->name[j+1] == ';')
break;
buf[j] = entry->name[j];
}
buf[j] = 0;
return false;