mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-28 22:02:39 +02:00
thermosphere: fix off by 1 in wp mgr
This commit is contained in:
parent
7ecb3a4aaf
commit
0126a6417f
@ -105,7 +105,7 @@ namespace ams::hvisor {
|
|||||||
} else {
|
} else {
|
||||||
size_t off = addr & 7ull;
|
size_t off = addr & 7ull;
|
||||||
wp.vr = addr & ~7ul;
|
wp.vr = addr & ~7ul;
|
||||||
wp.cr.bas = MASK2(off + size, off);
|
wp.cr.bas = MASK2(off + size - 1, off);
|
||||||
}
|
}
|
||||||
|
|
||||||
return AddImpl(addr, size, wp);
|
return AddImpl(addr, size, wp);
|
||||||
|
Loading…
Reference in New Issue
Block a user