Skip to content

Commit

Permalink
Add "b" prefix when using DREQ_GET_MEM_BINARY
Browse files Browse the repository at this point in the history
  • Loading branch information
khang06 committed Jan 21, 2025
1 parent 867f95b commit 6b48ea6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GdbServerConnection.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1921,7 +1921,7 @@ void GdbServerConnection::reply_get_mem(const vector<uint8_t>& mem) {
} else if (!mem.size()) {
write_packet("E01");
} else {
write_binary_packet("", mem.data(), mem.size());
write_binary_packet("b", mem.data(), mem.size());
}
}

Expand Down

0 comments on commit 6b48ea6

Please sign in to comment.