Clamp reads at the beginning too.
Safer, avoids an index overrun in disk cache.
This commit is contained in:
parent
1c357f7f7b
commit
8dd7527dc8
2 changed files with 12 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue