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__
zwelch 2009-06-12 01:41:07 +00:00
parent f5e4511701
commit a351c57261
1 changed files with 1 additions and 1 deletions

View File

@ -1038,7 +1038,7 @@ static int handle_jtag_khz_command(struct command_context_s *cmd_ctx, char *cmd,
return retval;
}
int cur_speed;
int cur_speed = jtag_get_speed_khz();
retval = jtag_get_speed_readable(&cur_speed);
if (ERROR_OK != retval)
return retval;