Commit 6deb5895 authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

winedbg: Explicitly handle MustReplyEmpty packet.

We now always print a warning when packet_error is returned. Signed-off-by: 's avatarRémi Bernon <rbernon@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 83284dba
......@@ -1070,8 +1070,9 @@ static enum packet_return packet_verbose(struct gdb_context* gdbctx)
return packet_verbose_cont(gdbctx);
}
WARN("Unhandled verbose packet %s\n",
debugstr_an(gdbctx->in_packet, gdbctx->in_packet_len));
if (gdbctx->in_packet_len == 14 && !memcmp(gdbctx->in_packet, "MustReplyEmpty", 14))
return packet_reply(gdbctx, "");
return packet_error;
}
......
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