gdb_report_data_abort now ignores all target read errors, including address space wraps. Hopefully works around problems in 6.8

git-svn-id: svn://svn.berlios.de/openocd/trunk@1099 b42882b7-edfa-0310-969c-e2dbd0fdcd60
__archive__
oharboe 2008-10-24 07:18:13 +00:00
parent 74bb0cd244
commit fdb7a1705d
2 changed files with 9 additions and 9 deletions

View File

@ -1138,7 +1138,7 @@ int gdb_read_memory_packet(connection_t *connection, target_t *target, char *pac
retval = target_read_buffer(target, addr, len, buffer);
if ((retval == ERROR_TARGET_DATA_ABORT) && (!gdb_report_data_abort))
if ((retval!=ERROR_OK)&&!gdb_report_data_abort)
{
/* TODO : Here we have to lie and send back all zero's lest stack traces won't work.
* At some point this might be fixed in GDB, in which case this code can be removed.