Fix unitialized use of cur_speed in handle_jtag_khz_command:
- Use the default KHz speed setting, in case interface is not initialized. git-svn-id: svn://svn.berlios.de/openocd/trunk@2218 b42882b7-edfa-0310-969c-e2dbd0fdcd60__archive__
parent
f5e4511701
commit
a351c57261
|
@ -1038,7 +1038,7 @@ static int handle_jtag_khz_command(struct command_context_s *cmd_ctx, char *cmd,
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
int cur_speed;
|
int cur_speed = jtag_get_speed_khz();
|
||||||
retval = jtag_get_speed_readable(&cur_speed);
|
retval = jtag_get_speed_readable(&cur_speed);
|
||||||
if (ERROR_OK != retval)
|
if (ERROR_OK != retval)
|
||||||
return retval;
|
return retval;
|
||||||
|
|
Loading…
Reference in New Issue