From f0e0e72e4d83ce96734297f3f0b9785b52ed4097 Mon Sep 17 00:00:00 2001 From: marcbou Date: Thu, 19 Jun 2003 10:30:13 +0000 Subject: [PATCH] Patch #1623: Add missing pbuf_free() call after pbuf_chain() in slipif_input() --- src/netif/slipif.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/netif/slipif.c b/src/netif/slipif.c index 89421345..ccafa579 100644 --- a/src/netif/slipif.c +++ b/src/netif/slipif.c @@ -150,6 +150,7 @@ slipif_input( struct netif * netif ) if (q != NULL) { pbuf_chain(q, p); + pbuf_free(p); } else { q = p; }