mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-26 03:16:18 +00:00
fix pbuf_alloc for layer PBUF_LINK
This commit is contained in:
parent
c9bd32d12b
commit
8210edfeea
@ -204,9 +204,9 @@ pbuf_alloc(pbuf_layer l, u16_t size, pbuf_flag flag)
|
||||
/* FALLTHROUGH */
|
||||
case PBUF_IP:
|
||||
offset += PBUF_IP_HLEN;
|
||||
offset += PBUF_LINK_HLEN;
|
||||
/* FALLTHROUGH */
|
||||
case PBUF_LINK:
|
||||
offset += PBUF_LINK_HLEN;
|
||||
break;
|
||||
case PBUF_RAW:
|
||||
break;
|
||||
@ -661,4 +661,6 @@ pbuf_unref(struct pbuf *f)
|
||||
q = q->next;
|
||||
}
|
||||
return f;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user