Commit 00349e3f authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

winedbg/gdbproxy: Don't try to single-step a terminated process.

parent 6159431c
......@@ -1065,7 +1065,8 @@ static enum packet_return packet_verbose_cont(struct gdb_context* gdbctx)
} /* if(defaultAction >=0) */
wait_for_debuggee(gdbctx);
gdbctx->process->be_cpu->single_step(&gdbctx->context, FALSE);
if (gdbctx->process)
gdbctx->process->be_cpu->single_step(&gdbctx->context, FALSE);
return packet_reply_status(gdbctx);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment