1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-09 21:51:45 +00:00

kern: fix inverted conditional in UnmapProcessCodeMemory

This commit is contained in:
Michael Scire 2020-12-02 11:31:50 -08:00
parent e760a9d4b0
commit bba99d49da

View file

@ -908,7 +908,7 @@ namespace ams::kern {
}
/* Check if we're done. */
if (dst_address + size - 1 > info.GetLastAddress()) {
if (dst_address + size - 1 <= info.GetLastAddress()) {
break;
}