mirror of
https://github.com/espressif/esp-lwip.git
synced 2026-06-05 21:04:45 +00:00
slip: Fix SLIP RX linked list append.
2.1.3-esp: 84e02732 slip: Fix SLIP RX linked list append.
This commit is contained in:
committed by
David Cermak
parent
814c00f51a
commit
8185cbce04
+1
-1
@@ -497,7 +497,7 @@ slipif_rxbyte_enqueue(struct netif *netif, u8_t data)
|
||||
if (priv->rxpackets != NULL) {
|
||||
#if SLIP_RX_QUEUE
|
||||
/* queue multiple pbufs */
|
||||
struct pbuf *q = p;
|
||||
struct pbuf *q = priv->rxpackets;
|
||||
while (q->next != NULL) {
|
||||
q = q->next;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user