- fixes segfault using the targets cmd if multiple targets defined

git-svn-id: svn://svn.berlios.de/openocd/trunk@1187 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
ntfreak 2008-11-26 16:43:01 +00:00
parent 9a7bbada94
commit 271bb81d6d

View File

@ -1362,7 +1362,7 @@ int handle_targets_command(struct command_context_s *cmd_ctx, char *cmd, char **
if (argc == 1)
{
/* try as tcltarget name */
for( target = all_targets ; target ; target++ ){
for( target = all_targets ; target ; target = target->next ){
if( target->cmd_name ){
if( 0 == strcmp( args[0], target->cmd_name ) ){
/* MATCH */
@ -1388,8 +1388,9 @@ int handle_targets_command(struct command_context_s *cmd_ctx, char *cmd, char **
cmd_ctx->current_target = target->target_number;
return ERROR_OK;
}
DumpTargets:
DumpTargets:
target = all_targets;
command_print(cmd_ctx, " CmdName Type Endian ChainPos State ");
command_print(cmd_ctx, "-- ---------- ---------- ---------- -------- ----------");
while (target)