kern: fix assertion in the multi-region pool partition code

This commit is contained in:
Michael Scire 2020-12-01 17:03:42 -08:00
parent cc7cf49c88
commit 866310937a

View file

@ -68,7 +68,7 @@ namespace ams::kern {
region_size = it.GetSize();
region_pool = GetPoolFromMemoryRegionType(it.GetType());
} else {
MESOSPHERE_ASSERT(it.GetAddress() > region_address + region_size);
MESOSPHERE_ASSERT(it.GetAddress() == region_address + region_size);
/* Update the size. */
region_size = it.GetEndAddress() - region_address;