mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-28 09:19:53 +00:00
Fix tcp pcb access after it was freed in tcp.c - found by Coverity
This commit is contained in:
parent
bbb5e99f25
commit
10edba936b
@ -611,7 +611,7 @@ tcp_listen_dual_with_backlog(struct tcp_pcb *pcb, u8_t backlog)
|
|||||||
|
|
||||||
lpcb = tcp_listen_with_backlog(pcb, backlog);
|
lpcb = tcp_listen_with_backlog(pcb, backlog);
|
||||||
if ((lpcb != NULL) &&
|
if ((lpcb != NULL) &&
|
||||||
ip_addr_isany(&pcb->local_ip)) {
|
ip_addr_isany(&lpcb->local_ip)) {
|
||||||
/* The default behavior is to accept connections on either
|
/* The default behavior is to accept connections on either
|
||||||
* IPv4 or IPv6, if not bound. */
|
* IPv4 or IPv6, if not bound. */
|
||||||
/* @see NETCONN_FLAG_IPV6_V6ONLY for changing this behavior */
|
/* @see NETCONN_FLAG_IPV6_V6ONLY for changing this behavior */
|
||||||
|
Loading…
Reference in New Issue
Block a user