fixed bug #39898 tcp_fasttmr() possible lock due to infinte queue process loop

This commit is contained in:
Simon Goldschmidt 2014-01-10 21:21:54 +01:00
parent ae300c98a4
commit 91333c5d2f
2 changed files with 5 additions and 0 deletions

View File

@ -80,6 +80,9 @@ HISTORY
++ 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
* inet.h, sockets.h: partially fixed bug #37585: IPv6 compatibility (in socket structs)

View File

@ -1112,6 +1112,8 @@ tcp_fasttmr_start:
}
}
pcb = next;
} else {
pcb = pcb->next;
}
}
}