mirror of
https://git.savannah.nongnu.org/git/lwip.git
synced 2026-08-10 17:43:39 +08:00
fixed bug #39898 tcp_fasttmr() possible lock due to infinte queue process loop
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user