Improve handle_runtest_command:
- Use parse_uint helper to ensure argument is parsed properly. git-svn-id: svn://svn.berlios.de/openocd/trunk@2216 b42882b7-edfa-0310-969c-e2dbd0fdcd60__archive__
parent
ea95cdb8e2
commit
a9d5119825
|
@ -1088,7 +1088,12 @@ static int handle_runtest_command(struct command_context_s *cmd_ctx,
|
|||
if (argc != 1)
|
||||
return ERROR_COMMAND_SYNTAX_ERROR;
|
||||
|
||||
jtag_add_runtest(strtol(args[0], NULL, 0), jtag_get_end_state());
|
||||
unsigned num_clocks;
|
||||
int retval = parse_uint(args[0], &num_clocks);
|
||||
if (ERROR_OK != retval)
|
||||
return retval;
|
||||
|
||||
jtag_add_runtest(num_clocks, jtag_get_end_state());
|
||||
jtag_execute_queue();
|
||||
|
||||
return ERROR_OK;
|
||||
|
|
Loading…
Reference in New Issue