mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-06 13:58:40 +00:00
fix incorrect abort-on-0-rip condition in unwinder path; we can still have nonzero rsps and find valid frames.
This commit is contained in:
@@ -3206,8 +3206,8 @@ ctrl_unwind_from_thread(Arena *arena, CTRL_EntityCtx *ctx, CTRL_Handle thread, U
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// rjf: cancel on 0 rip
|
// rjf: cancel on 0 rip/rsp
|
||||||
if(rip == 0)
|
if(rsp == 0 && rip == 0)
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user