mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-16 14:11:02 +00:00
Fix bug #51937 by checking TF_CLOSED at the end of all pcb callbacks in tcp_input()
(cherry picked from commit 86abfbe087
)
This commit is contained in:
parent
66120f7d79
commit
e8a3d42e2d
@ -480,6 +480,9 @@ tcp_input(struct pbuf *p, struct netif *inp)
|
|||||||
}
|
}
|
||||||
|
|
||||||
tcp_input_pcb = NULL;
|
tcp_input_pcb = NULL;
|
||||||
|
if (tcp_input_delayed_close(pcb)) {
|
||||||
|
goto aborted;
|
||||||
|
}
|
||||||
/* Try to send something out. */
|
/* Try to send something out. */
|
||||||
tcp_output(pcb);
|
tcp_output(pcb);
|
||||||
#if TCP_INPUT_DEBUG
|
#if TCP_INPUT_DEBUG
|
||||||
|
Loading…
Reference in New Issue
Block a user