When backtracing self, start with the current frame (i.e. the
frame of db_trace_self()) and not the caller's frame. The use of builtin_frame_address(1) to get the caller's frame is not reliable and can cause panics.
This commit is contained in:
parent
bd4ec0f8b9
commit
eab0945f13
@ -206,6 +206,6 @@ db_trace_self(void)
|
||||
{
|
||||
db_addr_t addr;
|
||||
|
||||
addr = (db_addr_t)__builtin_frame_address(1);
|
||||
addr = (db_addr_t)__builtin_frame_address(0);
|
||||
db_stack_trace_cmd(addr, -1);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user