mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +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
Notes:
sideshowbarker
2024-07-18 22:36:37 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/ac59903c897
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…
Reference in a new issue