Skip to content

Commit 2bdec39

Browse files
ramiropollastsquad
authored andcommitted
gdbstub: Fix handling of '!' packet with new infra
Since the '!' packet is not handled by the new infrastructure, gdb_handle_packet() would call run_cmd_parser() with a NULL cmd_parser value, which would lead to an unsupported packet ("$#00") being sent, which could confuse the gdb client. This also has a side-effect of speeding up the initial connection with gdb. Fixes: 3e2c126 ("gdbstub: Implement deatch (D pkt) with new infra") Signed-off-by: Ramiro Polla <[email protected]> Message-Id: <[email protected]> Signed-off-by: Alex Bennée <[email protected]>
1 parent 23919dd commit 2bdec39

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

gdbstub.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -2588,7 +2588,9 @@ static int gdb_handle_packet(GDBState *s, const char *line_buf)
25882588
break;
25892589
}
25902590

2591-
run_cmd_parser(s, line_buf, cmd_parser);
2591+
if (cmd_parser) {
2592+
run_cmd_parser(s, line_buf, cmd_parser);
2593+
}
25922594

25932595
return RS_IDLE;
25942596
}

0 commit comments

Comments
 (0)