aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2017-04-28 08:57:56 -0400
committerPablo Neira Ayuso <pablo@netfilter.org>2017-04-28 09:49:48 -0400
commit7dde07e9c53617549d67dd3e1d791496d0d3868e (patch)
tree90871e7de607b7aeee66199f795f6eee578813ef
parent9dd2ab609eef736d5639e0de1bcc2e71e714b28e (diff)
netfilter: x_tables: unlock on error in xt_find_table_lock()
According to my static checker we should unlock here before the return. That seems reasonable to me as well. Fixes" b9e69e127397 ("netfilter: xtables: don't hook tables by default") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Florian Westphal <fw@strlen.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-rw-r--r--net/netfilter/x_tables.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/netfilter/x_tables.c b/net/netfilter/x_tables.c
index 14857afc9937..f134d384852f 100644
--- a/net/netfilter/x_tables.c
+++ b/net/netfilter/x_tables.c
@@ -1051,8 +1051,10 @@ struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af,
1051 list_for_each_entry(t, &init_net.xt.tables[af], list) { 1051 list_for_each_entry(t, &init_net.xt.tables[af], list) {
1052 if (strcmp(t->name, name)) 1052 if (strcmp(t->name, name))
1053 continue; 1053 continue;
1054 if (!try_module_get(t->me)) 1054 if (!try_module_get(t->me)) {
1055 mutex_unlock(&xt[af].mutex);
1055 return NULL; 1056 return NULL;
1057 }
1056 1058
1057 mutex_unlock(&xt[af].mutex); 1059 mutex_unlock(&xt[af].mutex);
1058 if (t->table_init(net) != 0) { 1060 if (t->table_init(net) != 0) {