mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 04:34:59 +00:00
Kernel: Don't try to symbolicate user addresses with ksyms
That's just not gonna work. :^)
This commit is contained in:
parent
e1236dac3e
commit
ac59903c89
1 changed files with 1 additions and 1 deletions
|
@ -1003,7 +1003,7 @@ String Thread::backtrace_impl()
|
|||
ProcessPagingScope paging_scope(process);
|
||||
for (auto& frame : stack_trace) {
|
||||
if (is_user_range(VirtualAddress(frame), sizeof(FlatPtr) * 2)) {
|
||||
recognized_symbols.append({ frame, symbolicate_kernel_address(frame) });
|
||||
recognized_symbols.append({ frame });
|
||||
} else {
|
||||
recognized_symbols.append({ frame, symbolicate_kernel_address(frame) });
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue