slip: Fix SLIP RX linked list append.

2.1.3-esp: 84e02732 slip: Fix SLIP RX linked list append.
This commit is contained in:
Rob Connolly
2020-12-02 13:18:31 +13:00
committed by David Cermak
parent 814c00f51a
commit 8185cbce04
+1 -1
View File
@@ -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;
}