Skip to content
Snippets Groups Projects
Commit 7df08fc3 authored by oharboe's avatar oharboe
Browse files

fixed gaffe in last release w/target number.

git-svn-id: svn://svn.berlios.de/openocd/trunk@965 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent e9926c60
No related branches found
No related tags found
No related merge requests found
......@@ -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));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment