mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-22 23:55:12 +00:00
Kernel: Don't panic if MemoryManager::find_free_physical_page fails
This commit is contained in:
committed by
Linus Groh
parent
8e8ea99bf3
commit
c681330450
@@ -923,7 +923,10 @@ RefPtr<PhysicalPage> MemoryManager::find_free_physical_page(bool committed)
|
||||
}
|
||||
}
|
||||
});
|
||||
VERIFY(!page.is_null());
|
||||
|
||||
if (page.is_null())
|
||||
dbgln("MM: couldn't find free physical page. Continuing...");
|
||||
|
||||
return page;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user