fixed gaffe in last release w/target number.

git-svn-id: svn://svn.berlios.de/openocd/trunk@965 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
oharboe 2008-08-25 11:30:46 +00:00
parent e9926c60bc
commit 7df08fc385
1 changed files with 2 additions and 2 deletions

View File

@ -1394,12 +1394,12 @@ int handle_target_command(struct command_context_s *cmd_ctx, char *cmd, char **a
}
// get target number *before* adding new target to the list */
i = new_target_number();
int n = new_target_number();
// calloc will init the memory to zero for us
*last_target_p = calloc(1,sizeof(target_t));
// save target number.
(*last_target_p)->cmd_name = NULL;
(*last_target_p)->target_number = i;
(*last_target_p)->target_number = n;
/* allocate memory for each unique target type */
(*last_target_p)->type = (target_type_t*)malloc(sizeof(target_type_t));