Skip to content

Commit

Permalink
Merge pull request #2 from johnwbyrd/vmustreplyempty
Browse files Browse the repository at this point in the history
Handle vMustReplyEmpty packet correctly
  • Loading branch information
jeremybennett authored May 8, 2019
2 parents 6ab2a3e + 2a1f5d4 commit eb59a03
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2019-05-06 John Byrd <[email protected]>

* src/GdbServer.cpp: (rspVpkt) Handle vMustReplyEmpty packet,
as well as other unknown v packets, with null string, as per
modern gdb standard

2012-04-30 Jeremy Bennett <[email protected]>

* src/GdbServer.cpp: Include inttypes.h, first defining
Expand Down
2 changes: 1 addition & 1 deletion src/GdbServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,7 @@ GdbServer::rspVpkt ()
{
cerr << "Warning: Unknown RSP 'v' packet type " << pkt->data
<< ": ignored" << endl;
pkt->packStr ("E01");
pkt->packStr ("");
rsp->putPkt (pkt);
return;
}
Expand Down

0 comments on commit eb59a03

Please sign in to comment.