[IPV6] SYSCTL: Fix possible memory leakage in error path.
authorYOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Wed, 27 Feb 2008 20:06:38 +0000 (12:06 -0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 27 Feb 2008 20:06:38 +0000 (12:06 -0800)
In error path, we do need to free memory just allocated.

Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/sysctl_net_ipv6.c

index 408691b..d6d3e68 100644 (file)
@@ -102,9 +102,6 @@ static int ipv6_sysctl_net_init(struct net *net)
        net->ipv6.sysctl.table = register_net_sysctl_table(net, net_ipv6_ctl_path,
                                                           ipv6_table);
        if (!net->ipv6.sysctl.table)
-               return -ENOMEM;
-
-       if (!net->ipv6.sysctl.table)
                goto out_ipv6_icmp_table;
 
        err = 0;