mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-11 16:29:05 +00:00
netfilter: fix netfilter_net_init() return
We accidentally return an uninitialized variable. Fixes: cf56c2f892a8 ("netfilter: remove old pre-netns era hook api") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Pablo Neira Ayuso <pablo@netfilter.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
3e16afd33f
commit
073dd5ad34
@ -344,7 +344,7 @@ EXPORT_SYMBOL(nf_nat_decode_session_hook);
|
||||
|
||||
static int __net_init netfilter_net_init(struct net *net)
|
||||
{
|
||||
int i, h, ret;
|
||||
int i, h;
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(net->nf.hooks); i++) {
|
||||
for (h = 0; h < NF_MAX_HOOKS; h++)
|
||||
@ -362,7 +362,7 @@ static int __net_init netfilter_net_init(struct net *net)
|
||||
}
|
||||
#endif
|
||||
|
||||
return ret;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void __net_exit netfilter_net_exit(struct net *net)
|
||||
|
Loading…
x
Reference in New Issue
Block a user