Clamp reads at the beginning too.

Safer, avoids an index overrun in disk cache.
This commit is contained in:
Unknown W. Brackets 2016-05-26 00:07:07 -07:00
parent 1c357f7f7b
commit 8dd7527dc8
2 changed files with 12 additions and 0 deletions

View file

@ -68,6 +68,12 @@ void CachingFileLoader::Seek(s64 absolutePos) {
}
size_t CachingFileLoader::ReadAt(s64 absolutePos, size_t bytes, void *data) {
if (absolutePos >= filesize_) {
bytes = 0;
} else if (absolutePos + (s64)bytes >= filesize_) {
bytes = filesize_ - absolutePos;
}
size_t readSize = ReadFromCache(absolutePos, bytes, data);
// While in case the cache size is too small for the entire read.
while (readSize < bytes) {