Skip to content

Commit

Permalink
Merge pull request #2 from yeggor/fix_physmem_r
Browse files Browse the repository at this point in the history
Fix physmem r
  • Loading branch information
n3k authored Feb 27, 2023
2 parents 1fc1122 + 06e5fd5 commit 82574f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PlatboxClient/src/physmem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ void read_physical_memory(UINT64 address, UINT32 size, PVOID buffer, BOOL bPrint
}

if (bPrint) {
print_memory(cur_address, (char *)physmem_addr, PAGE_SIZE);
print_memory(cur_address, (char *)physmem_addr, auxSize);
}

munmap(physmem_addr, PAGE_SIZE);
Expand Down

0 comments on commit 82574f6

Please sign in to comment.