kern: fix whoops in new page table logic

This commit is contained in:
Michael Scire 2024-03-28 03:43:22 -07:00 committed by SciresM
parent ecbe5cd406
commit c0487ad384

View file

@ -301,7 +301,7 @@ namespace ams::kern {
/* If aslr is enabled, randomize the current region order. Otherwise, sort by type. */
if (m_enable_aslr) {
for (size_t i = 0; i < cur_alloc_count - 1; ++i) {
std::swap(region_layouts[i], region_layouts[KSystemControl::GenerateRandomRange(i, cur_alloc_count - 1)]);
std::swap(region_layouts[cur_region_index + i], region_layouts[cur_region_index + KSystemControl::GenerateRandomRange(i, cur_alloc_count - 1)]);
}
} else {
for (size_t i = 0; i < cur_alloc_count - 1; ++i) {