- fix issue when using gdb_port cmd
- bug introduced in r2240 git-svn-id: svn://svn.berlios.de/openocd/trunk@2403 b42882b7-edfa-0310-969c-e2dbd0fdcd60__archive__
parent
1e8225c738
commit
374f6c8b70
|
@ -2242,9 +2242,7 @@ int handle_gdb_port_command(struct command_context_s *cmd_ctx, char *cmd, char *
|
|||
return ERROR_OK;
|
||||
}
|
||||
|
||||
/* only if the port wasn't overwritten by cmdline */
|
||||
if (gdb_port == 0)
|
||||
gdb_port = strtoul(args[0], NULL, 0);
|
||||
gdb_port = strtoul(args[0], NULL, 0);
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue