Browse Source

propagate error in dump_image. If an error occurs during dump_image, a tcl exception is thrown.

git-svn-id: svn://svn.berlios.de/openocd/trunk@1782 b42882b7-edfa-0310-969c-e2dbd0fdcd60
tags/v0.2.0
oharboe 15 years ago
parent
commit
c5e51bca0a
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/target/target.c

+ 2
- 2
src/target/target.c View File

@@ -2158,10 +2158,10 @@ static int handle_dump_image_command(struct command_context_s *cmd_ctx, char *cm
if (retval==ERROR_OK)
{
command_print(cmd_ctx, "dumped %"PRIi64" byte in %s", fileio.size, duration_text);
free(duration_text);
}
free(duration_text);

return ERROR_OK;
return retval;
}

static int handle_verify_image_command_internal(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc, int verify)


Loading…
Cancel
Save