Fix moving position indicator out of bounds in FileAccessMemory

(cherry picked from commit bff0c71e2e)
This commit is contained in:
Bartłomiej T. Listwon 2023-04-07 17:44:38 +02:00 committed by Yuri Sizov
parent eab0386934
commit 1f51ceddf3

View file

@ -144,7 +144,7 @@ uint64_t FileAccessMemory::get_buffer(uint8_t *p_dst, uint64_t p_length) const {
}
memcpy(p_dst, &data[pos], read);
pos += p_length;
pos += read;
return read;
}
@ -172,5 +172,5 @@ void FileAccessMemory::store_buffer(const uint8_t *p_src, uint64_t p_length) {
}
memcpy(&data[pos], p_src, write);
pos += p_length;
pos += write;
}