diff mbox series

[nft] Free flowtable in handle_free()

Message ID 20180424094419.28761-1-phil@nwl.cc
State Accepted
Delegated to: Pablo Neira
Headers show
Series [nft] Free flowtable in handle_free() | expand

Commit Message

Phil Sutter April 24, 2018, 9:44 a.m. UTC
Fixes: db0697ce7f602 ("src: support for flowtable listing")
Signed-off-by: Phil Sutter <phil@nwl.cc>
---
 src/rule.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Pablo Neira Ayuso April 24, 2018, 10:04 a.m. UTC | #1
Applied, thanks Phil.
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox series

Patch

diff --git a/src/rule.c b/src/rule.c
index 3066145747707..ca978d73607cb 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)