Skip to content

Commit

Permalink
slip: Fix SLIP RX linked list append.
Browse files Browse the repository at this point in the history
2.1.3-esp: 84e0273 slip: Fix SLIP RX linked list append.
  • Loading branch information
webworxshop authored and david-cermak committed Sep 10, 2024
1 parent 814c00f commit 8185cbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/netif/slipif.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 8185cbc

Please sign in to comment.