mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-16 14:11:02 +00:00
Added brackets, completed CHANGELOG
This commit is contained in:
parent
5e224aba6d
commit
03fb581252
@ -66,6 +66,9 @@ HISTORY
|
|||||||
|
|
||||||
++ Bugfixes:
|
++ Bugfixes:
|
||||||
|
|
||||||
|
2012-09-26: patch by Henrik Persson
|
||||||
|
* dhcp.c: patch #7840 Segfault in dhcp_parse_reply if no end marker in dhcp packet
|
||||||
|
|
||||||
2012-08-22: Simon Goldschmidt
|
2012-08-22: Simon Goldschmidt
|
||||||
* memp.c: fixed bug #37166: memp_sanity check loops itself
|
* memp.c: fixed bug #37166: memp_sanity check loops itself
|
||||||
|
|
||||||
|
@ -1471,7 +1471,7 @@ decode_next:
|
|||||||
if (offset >= q->len) {
|
if (offset >= q->len) {
|
||||||
offset -= q->len;
|
offset -= q->len;
|
||||||
offset_max -= q->len;
|
offset_max -= q->len;
|
||||||
if (offset < offset_max && offset_max) {
|
if ((offset < offset_max) && offset_max) {
|
||||||
q = q->next;
|
q = q->next;
|
||||||
LWIP_ASSERT("next pbuf was null", q);
|
LWIP_ASSERT("next pbuf was null", q);
|
||||||
options = (u8_t*)q->payload;
|
options = (u8_t*)q->payload;
|
||||||
|
Loading…
Reference in New Issue
Block a user