bktr: Add logging on successful patch

This commit is contained in:
Zach Hilman
2018-08-28 22:38:35 -04:00
parent 2814ca3624
commit cbd517d8cc
3 changed files with 24 additions and 7 deletions

View File

@ -43,7 +43,7 @@ size_t BKTR::Read(u8* data, size_t length, size_t offset) const {
const auto next_relocation = GetNextRelocationEntry(offset);
if (offset + length >= next_relocation.address_patch) {
if (offset + length > next_relocation.address_patch) {
const u64 partition = next_relocation.address_patch - offset;
return Read(data, partition, offset) +
Read(data + partition, length - partition, offset + partition);