mirror of
https://github.com/azahar-emu/azahar.git
synced 2026-06-06 02:33:44 -04:00
Do not use the cache if the read would result in OOB (#130)
This commit is contained in:
parent
c171aaad10
commit
404130ce78
1 changed files with 1 additions and 1 deletions
|
|
@ -383,7 +383,7 @@ ResultVal<std::size_t> ArticFileBackend::Read(u64 offset, std::size_t length, u8
|
|||
auto cache = cache_provider->ProvideCache(
|
||||
client, cache_provider->PathsToVector(archive_path, file_path), true);
|
||||
|
||||
if (cache != nullptr) {
|
||||
if (cache != nullptr && (offset + static_cast<u64>(length)) < GetSize()) {
|
||||
return cache->Read(file_handle, offset, length, buffer);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue