Merge pull request #11553 from rkfg/pfs-fix

pfs: Fix reading filenames past the buffer end
This commit is contained in:
liamwhite 2023-09-21 09:21:08 -04:00 committed by GitHub
commit 2ffea42ec8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,6 +47,7 @@ PartitionFilesystem::PartitionFilesystem(VirtualFile file) {
// Actually read in now...
std::vector<u8> file_data = file->ReadBytes(metadata_size);
const std::size_t total_size = file_data.size();
file_data.push_back(0);
if (total_size != metadata_size) {
status = Loader::ResultStatus::ErrorIncorrectPFSFileSize;