mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-26 12:13:47 +00:00
fixed bug #39898 tcp_fasttmr() possible lock due to infinte queue process loop
This commit is contained in:
parent
ae300c98a4
commit
91333c5d2f
@ -80,6 +80,9 @@ HISTORY
|
|||||||
|
|
||||||
++ Bugfixes:
|
++ Bugfixes:
|
||||||
|
|
||||||
|
2014-01-10: Simon Goldschmidt
|
||||||
|
* tcp.c: fixed bug #39898 tcp_fasttmr() possible lock due to infinte queue process loop
|
||||||
|
|
||||||
2013-06-29: Simon Goldschmidt
|
2013-06-29: Simon Goldschmidt
|
||||||
* inet.h, sockets.h: partially fixed bug #37585: IPv6 compatibility (in socket structs)
|
* inet.h, sockets.h: partially fixed bug #37585: IPv6 compatibility (in socket structs)
|
||||||
|
|
||||||
|
@ -1112,6 +1112,8 @@ tcp_fasttmr_start:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
pcb = next;
|
pcb = next;
|
||||||
|
} else {
|
||||||
|
pcb = pcb->next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user