mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:24:58 +00:00
Kernel: Do not assert if unable to load kernel symbols
This commit is contained in:
parent
2f8b047339
commit
06b73eea94
1 changed files with 6 additions and 5 deletions
|
@ -191,11 +191,12 @@ void dump_backtrace()
|
|||
void load_kernel_symbol_table()
|
||||
{
|
||||
auto result = VFS::the().open("/res/kernel.map", O_RDONLY, 0, VFS::the().root_custody());
|
||||
ASSERT(!result.is_error());
|
||||
auto description = result.value();
|
||||
auto buffer = description->read_entire_file();
|
||||
ASSERT(!buffer.is_error());
|
||||
load_kernel_sybols_from_data(*buffer.value());
|
||||
if (!result.is_error()) {
|
||||
auto description = result.value();
|
||||
auto buffer = description->read_entire_file();
|
||||
if (!buffer.is_error())
|
||||
load_kernel_sybols_from_data(*buffer.value());
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue