Skip to content
Snippets Groups Projects
Commit 5b747eeb authored by drath's avatar drath
Browse files

- fixed regression in gdb_server.c (Thanks to Michael Fischer for finding these bugs)

git-svn-id: svn://svn.berlios.de/openocd/trunk@101 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent a582e9a8
No related branches found
No related tags found
No related merge requests found
......@@ -491,7 +491,7 @@ void gdb_str_to_target(target_t *target, char *str, char *tstr)
if (str_len % 2)
{
ERROR("BUG: gdb value with uneven number of characters encountered");
ERROR("BUG: gdb value with uneven number of characters encountered: %s", str);
exit(-1);
}
......@@ -703,7 +703,7 @@ int gdb_get_register_packet(connection_t *connection, target_t *target, char *pa
hex_buf = buf_to_str(reg_list[reg_num]->value, reg_list[reg_num]->size, 16);
gdb_str_to_target(target, reg_packet, hex_buf);
gdb_str_to_target(target, hex_buf, reg_packet);
gdb_put_packet(connection, reg_packet, CEIL(reg_list[reg_num]->size, 8) * 2);
......@@ -917,6 +917,7 @@ int gdb_write_memory_packet(connection_t *connection, target_t *target, char *pa
buffer[i] = tmp;
}
retval = ERROR_OK;
switch (len)
{
/* handle sized writes */
......@@ -985,6 +986,7 @@ int gdb_write_memory_binary_packet(connection_t *connection, target_t *target, c
return ERROR_SERVER_REMOTE_CLOSED;
}
retval = ERROR_OK;
if( len ) {
buffer = malloc(len);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment