Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 633d424b authored by Pavel Emelyanov's avatar Pavel Emelyanov Committed by David S. Miller
Browse files

[NETNS]: Don't initialize err variable twice.



The ip6_route_net_init() performs some unneeded actions.

Signed-off-by: default avatarPavel Emelyanov <xemul@openvz.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2aed2827
Loading
Loading
Loading
Loading
+1 −2
Original line number Original line Diff line number Diff line
@@ -2614,9 +2614,8 @@ struct ctl_table *ipv6_route_sysctl_init(struct net *net)


static int ip6_route_net_init(struct net *net)
static int ip6_route_net_init(struct net *net)
{
{
	int ret = 0;
	int ret = -ENOMEM;


	ret = -ENOMEM;
	net->ipv6.ip6_dst_ops = kmemdup(&ip6_dst_ops_template,
	net->ipv6.ip6_dst_ops = kmemdup(&ip6_dst_ops_template,
					sizeof(*net->ipv6.ip6_dst_ops),
					sizeof(*net->ipv6.ip6_dst_ops),
					GFP_KERNEL);
					GFP_KERNEL);