Skip to content

Commit

Permalink
Fix for W11 aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
h33p committed Dec 28, 2023
1 parent cc53dc2 commit 6cd4a58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion memflow-win32/src/kernel/start_block/aarch64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ fn find_pt(addr: Address, mem: &[u8]) -> Option<Address> {
mem[0x800..]
.chunks(8)
.map(|c| u64::from_le_bytes(c.try_into().unwrap()))
.filter(|a| (a & 0xfff) == 0x703)
.filter(|a| (a & 0xff) == 0x03)
.nth(5)?;

Some(addr)
Expand Down

0 comments on commit 6cd4a58

Please sign in to comment.