From 326e7a3eab241bb7dc831b1d7e940a05235a8ae9 Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Sat, 14 Feb 2015 14:31:35 +0100 Subject: [PATCH] Free also the packet structure --- base/network.c | 1 + 1 file changed, 1 insertion(+) diff --git a/base/network.c b/base/network.c index e95623c..563f39f 100644 --- a/base/network.c +++ b/base/network.c @@ -184,6 +184,7 @@ int packet_destroy(p) return(0); FREE(p->base); + FREE(p); return(0); }