From: Eric Leblond Date: Wed, 2 Oct 2013 23:08:06 +0000 (+0200) Subject: netlink: suppress useless variable X-Git-Tag: v0.099~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa6a7380410670567253ef3b71e90caeff442651;p=thirdparty%2Fnftables.git netlink: suppress useless variable Signed-off-by: Eric Leblond Signed-off-by: Pablo Neira Ayuso --- 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;