From: Phil Sutter Date: Tue, 24 Apr 2018 09:44:19 +0000 (+0200) Subject: rule: Free flowtable in handle_free() X-Git-Tag: v0.8.4~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87650476c4a2da66e8641e04566655b85f63bb43;p=thirdparty%2Fnftables.git rule: Free flowtable in handle_free() Fixes: db0697ce7f602 ("src: support for flowtable listing") Signed-off-by: Phil Sutter Signed-off-by: Pablo Neira Ayuso --- diff --git a/src/rule.c b/src/rule.c index 1f69afd1..e0e06c52 100644 --- a/src/rule.c +++ b/src/rule.c @@ -33,6 +33,7 @@ void handle_free(struct handle *h) xfree(h->table); xfree(h->chain); xfree(h->set); + xfree(h->flowtable); } void handle_merge(struct handle *dst, const struct handle *src)