Improve handle_verify_image_command_internal command argument handling:
- Use parse_u32 to ensure address parses properly. git-svn-id: svn://svn.berlios.de/openocd/trunk@2234 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
890973acc4
commit
16c77cf3ca
|
@ -2366,8 +2366,12 @@ static int handle_verify_image_command_internal(struct command_context_s *cmd_ct
|
|||
|
||||
if (argc >= 2)
|
||||
{
|
||||
u32 addr;
|
||||
retval = parse_u32(args[1], &addr);
|
||||
if (ERROR_OK != retval)
|
||||
return ERROR_COMMAND_SYNTAX_ERROR;
|
||||
image.base_address = addr;
|
||||
image.base_address_set = 1;
|
||||
image.base_address = strtoul(args[1], NULL, 0);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue