]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
netfilter: x_tables: unlock on error in xt_find_table_lock()
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 28 Apr 2017 12:57:56 +0000 (15:57 +0300)
committerPablo Neira Ayuso <pablo@netfilter.org>
Fri, 28 Apr 2017 13:49:48 +0000 (15:49 +0200)
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>
net/netfilter/x_tables.c

index 14857afc9937d30cae604fe839029593c1006944..f134d384852ff2e9795cb8108b1387cfb3966f73 100644 (file)
@@ -1051,8 +1051,10 @@ struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af,
        list_for_each_entry(t, &init_net.xt.tables[af], list) {
                if (strcmp(t->name, name))
                        continue;
-               if (!try_module_get(t->me))
+               if (!try_module_get(t->me)) {
+                       mutex_unlock(&xt[af].mutex);
                        return NULL;
+               }
 
                mutex_unlock(&xt[af].mutex);
                if (t->table_init(net) != 0) {