Fix bug #51937 by checking TF_CLOSED at the end of all pcb callbacks in tcp_input()

This commit is contained in:
goldsimon 2017-09-09 21:46:41 +02:00
parent a8ac37f419
commit 86abfbe087

View File

@ -521,6 +521,9 @@ tcp_input(struct pbuf *p, struct netif *inp)
}
tcp_input_pcb = NULL;
if (tcp_input_delayed_close(pcb)) {
goto aborted;
}
/* Try to send something out. */
tcp_output(pcb);
#if TCP_INPUT_DEBUG