tcp unit tests: fixed that tcp_teardown() could lead to accessing a netif pointer that is not valid any more (netif added in test function stored on stack)

(cherry picked from commit e9e9ec23b8)
This commit is contained in:
goldsimon 2017-03-09 20:23:16 +01:00
parent 19d56b4096
commit 0381849624

View File

@ -46,9 +46,9 @@ tcp_setup(void)
static void static void
tcp_teardown(void) tcp_teardown(void)
{ {
tcp_remove_all();
netif_list = NULL; netif_list = NULL;
netif_default = NULL; netif_default = NULL;
tcp_remove_all();
} }