mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-26 03:16:18 +00:00
Fix the fix for LWIP_LOOPBACK_MAX_PBUFS :-)
This commit is contained in:
parent
5b15234833
commit
5efe26ebd3
@ -960,7 +960,7 @@ netif_loop_output(struct netif *netif, struct pbuf *p)
|
|||||||
clen = pbuf_clen(r);
|
clen = pbuf_clen(r);
|
||||||
/* check for overflow or too many pbuf on queue */
|
/* check for overflow or too many pbuf on queue */
|
||||||
if (((netif->loop_cnt_current + clen) < netif->loop_cnt_current) ||
|
if (((netif->loop_cnt_current + clen) < netif->loop_cnt_current) ||
|
||||||
((netif->loop_cnt_current + clen) > LWIP_MAX(LWIP_LOOPBACK_MAX_PBUFS, 0xFFFF))) {
|
((netif->loop_cnt_current + clen) > LWIP_MIN(LWIP_LOOPBACK_MAX_PBUFS, 0xFFFF))) {
|
||||||
pbuf_free(r);
|
pbuf_free(r);
|
||||||
LINK_STATS_INC(link.memerr);
|
LINK_STATS_INC(link.memerr);
|
||||||
LINK_STATS_INC(link.drop);
|
LINK_STATS_INC(link.drop);
|
||||||
|
Loading…
Reference in New Issue
Block a user