dump_image now works for addresses not divisible by 4

git-svn-id: svn://svn.berlios.de/openocd/trunk@1785 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
oharboe 2009-05-14 18:56:41 +00:00
parent 651cb917e7
commit a74d911412
1 changed files with 1 additions and 1 deletions

View File

@ -2133,7 +2133,7 @@ static int handle_dump_image_command(struct command_context_s *cmd_ctx, char *cm
u32 size_written;
u32 this_run_size = (size > 560) ? 560 : size;
retval = target->type->read_memory(target, address, 4, this_run_size / 4, buffer);
retval = target_read_buffer(target, address, this_run_size, buffer);
if (retval != ERROR_OK)
{
break;