]> git.sur5r.net Git - openocd/commit
Permit null target on TCL connection
authorChristopher Head <chead@zaber.com>
Thu, 18 Oct 2018 21:20:45 +0000 (14:20 -0700)
committerTomas Vanek <vanekt@fbl.cz>
Tue, 13 Nov 2018 07:02:58 +0000 (07:02 +0000)
commitea41048830f3ef79129fdbf3623d708585929f5b
tree8a9ee38a7a190a32a79ae2ca21da407cb5289618
parent8d914e4d97df45b72fbb6919af1d276f3f69c6f3
Permit null target on TCL connection

In previous versions of OpenOCD, it was possible to connect to the TCL
RPC interface without a current target. In `tcl_new_connection`, the
curent target would be queried by number, and the possibility of a null
current target was handled properly.

In commit bb9d9c60264a905926e0d15f84842858d0de80b7, the
`get_target_by_num` call was replaced by a `get_current_target` call,
without noticing that `get_current_target` aborts if there is no current
target, whereas `tcl_new_connection` is perfectly able to handle that
situation.

Provide a `get_current_target_or_null` function for use by consumers who
are OK with a null current target, and use it in `tcl_new_connection`.

Change-Id: I06f7e1e149f1169e23c73ba328c7ad9f9425cc2a
Signed-off-by: Christopher Head <chead@zaber.com>
Reviewed-on: http://openocd.zylin.com/4730
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
Reviewed-by: Franck Jullien <franck.jullien@gmail.com>
src/server/tcl_server.c
src/target/target.c
src/target/target.h