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

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