- 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
This commit is contained in:
drath 2006-10-03 09:56:41 +00:00
parent a582e9a8d1
commit 5b747eeb4a
1 changed files with 4 additions and 2 deletions

View File

@ -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);