Browse Source

- 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
tags/v0.1.0
ntfreak 14 years ago
parent
commit
271bb81d6d
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      src/target/target.c

+ 3
- 2
src/target/target.c 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)


Loading…
Cancel
Save