From aa6a7380410670567253ef3b71e90caeff442651 Mon Sep 17 00:00:00 2001 From: Eric Leblond Date: Thu, 3 Oct 2013 01:08:06 +0200 Subject: netlink: suppress useless variable Signed-off-by: Eric Leblond Signed-off-by: Pablo Neira Ayuso --- src/netlink.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/netlink.c b/src/netlink.c index b1e44ad0..6f3002bc 100644 --- a/src/netlink.c +++ b/src/netlink.c @@ -441,7 +441,6 @@ static int netlink_flush_rules(struct netlink_ctx *ctx, const struct handle *h, const struct location *loc) { struct nft_rule_list *rule_cache; - struct nft_rule *nlr; rule_cache = mnl_nft_rule_dump(nf_sock, h->family); if (rule_cache == NULL) @@ -450,9 +449,7 @@ static int netlink_flush_rules(struct netlink_ctx *ctx, const struct handle *h, strerror(errno)); mnl_batch_begin(); - nlr = alloc_nft_rule(h); nft_rule_list_foreach(rule_cache, flush_rule_cb, ctx); - nft_rule_free(nlr); nft_rule_list_free(rule_cache); mnl_batch_end(); return 0; -- cgit v1.2.3