diff mbox

[nft,next-3.14] netlink: delete unused function calls

Message ID 20140217101057.5762.64983.stgit@nfdev.cica.es
State Accepted
Headers show

Commit Message

Arturo Borrero Feb. 17, 2014, 10:10 a.m. UTC
These functions calls, and the related `struct nft_table *nlt' are unused.

Signed-off-by: Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
---
 src/netlink.c |    3 ---
 1 file changed, 3 deletions(-)


--
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

Comments

Pablo Neira Ayuso Feb. 17, 2014, 11:20 p.m. UTC | #1
On Mon, Feb 17, 2014 at 11:10:57AM +0100, Arturo Borrero Gonzalez wrote:
> These functions calls, and the related `struct nft_table *nlt' are unused.

Applied, thanks Arturo.

Changed the title and description to insist on the unused variable.
--
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

Patch

diff --git a/src/netlink.c b/src/netlink.c
index 6e797dc..ea02972 100644
--- a/src/netlink.c
+++ b/src/netlink.c
@@ -703,7 +703,6 @@  int netlink_list_tables(struct netlink_ctx *ctx, const struct handle *h,
 			const struct location *loc)
 {
 	struct nft_table_list *table_cache;
-	struct nft_table *nlt;
 
 	table_cache = mnl_nft_table_dump(nf_sock, h->family);
 	if (table_cache == NULL)
@@ -711,9 +710,7 @@  int netlink_list_tables(struct netlink_ctx *ctx, const struct handle *h,
 					"Could not receive tables from kernel: %s",
 					strerror(errno));
 
-	nlt = alloc_nft_table(h);
 	nft_table_list_foreach(table_cache, list_table_cb, ctx);
-	nft_table_free(nlt);
 	nft_table_list_free(table_cache);
 	return 0;
 }