Browse Source

Merge pull request #11553 from rkfg/pfs-fix

pfs: Fix reading filenames past the buffer end
pull/15/merge
liamwhite 2 years ago
committed by GitHub
parent
commit
2ffea42ec8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      src/core/file_sys/partition_filesystem.cpp

1
src/core/file_sys/partition_filesystem.cpp

@ -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;

Loading…
Cancel
Save