Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions orte/mca/oob/tcp/oob_tcp_component.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,6 @@ static int tcp_component_open(void)
*/
static int tcp_component_close(void)
{
/* cleanup listen event list */
OPAL_LIST_DESTRUCT(&mca_oob_tcp_component.listeners);

OBJ_DESTRUCT(&mca_oob_tcp_component.peers);

if (NULL != mca_oob_tcp_component.ipv4conns) {
Expand Down Expand Up @@ -748,6 +745,9 @@ static void component_shutdown(void)
(void **) &peer, node, &node);
}

/* cleanup listen event list */
OPAL_LIST_DESTRUCT(&mca_oob_tcp_component.listeners);

opal_output_verbose(2, orte_oob_base_framework.framework_output,
"%s TCP SHUTDOWN done",
ORTE_NAME_PRINT(ORTE_PROC_MY_NAME));
Expand Down