From 449eb64fcbb821e74e95e447aa8b81dc3ec044b1 Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Mon, 10 Jul 2017 09:52:48 +0200 Subject: [PATCH] Fix my last commit - break is missing --- src/core/pbuf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/pbuf.c b/src/core/pbuf.c index 1e4e3f32..ed8f36f9 100644 --- a/src/core/pbuf.c +++ b/src/core/pbuf.c @@ -228,6 +228,7 @@ pbuf_alloc(pbuf_layer layer, u16_t length, pbuf_type type) case PBUF_REF: /* fall through */ case PBUF_ROM: p = pbuf_alloc_reference(NULL, length, type); + break; case PBUF_POOL: { struct pbuf *q, *last;