mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-06 22:08:41 +00:00
fix incorrect ctx check in win32 demon
This commit is contained in:
@@ -2882,7 +2882,7 @@ dmn_ctrl_run(Arena *arena, DMN_CtrlCtx *ctx, DMN_RunCtrls *ctrls)
|
|||||||
{
|
{
|
||||||
single_step_thread_ctx = 0;
|
single_step_thread_ctx = 0;
|
||||||
}
|
}
|
||||||
if(ctx != 0)
|
if(single_step_thread_ctx != 0)
|
||||||
{
|
{
|
||||||
U64 rflags = single_step_thread_ctx->EFlags|0x2;
|
U64 rflags = single_step_thread_ctx->EFlags|0x2;
|
||||||
U64 new_rflags = rflags & ~0x100;
|
U64 new_rflags = rflags & ~0x100;
|
||||||
|
|||||||
Reference in New Issue
Block a user