mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
Kernel: Fix overly loose MemoryManager::kernel_region_from_vaddr()
It's not enough to just find the largest-address-not-above the argument,
we must also check that the found region actually contains the argument.
Regressed in a23edd42b8, thanks to Idan
for pointing this out.
This commit is contained in:
@@ -623,7 +623,7 @@ Region* MemoryManager::kernel_region_from_vaddr(VirtualAddress vaddr)
|
||||
auto* region_ptr = MM.m_kernel_regions.find_largest_not_above(vaddr.get());
|
||||
if (!region_ptr)
|
||||
return nullptr;
|
||||
return *region_ptr;
|
||||
return (*region_ptr)->contains(vaddr) ? *region_ptr : nullptr;
|
||||
}
|
||||
|
||||
Region* MemoryManager::find_user_region_from_vaddr_no_lock(AddressSpace& space, VirtualAddress vaddr)
|
||||
|
||||
Reference in New Issue
Block a user