ipv6: fib6: remove redundant initialization of variable err
The variable err is being initialized with a value that is never read, the assignment is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ce4f8afd85
commit
b5ec0705ff
net/ipv6
|
@ -467,7 +467,7 @@ static const struct fib_rules_ops __net_initconst fib6_rules_ops_template = {
|
||||||
static int __net_init fib6_rules_net_init(struct net *net)
|
static int __net_init fib6_rules_net_init(struct net *net)
|
||||||
{
|
{
|
||||||
struct fib_rules_ops *ops;
|
struct fib_rules_ops *ops;
|
||||||
int err = -ENOMEM;
|
int err;
|
||||||
|
|
||||||
ops = fib_rules_register(&fib6_rules_ops_template, net);
|
ops = fib_rules_register(&fib6_rules_ops_template, net);
|
||||||
if (IS_ERR(ops))
|
if (IS_ERR(ops))
|
||||||
|
|
Loading…
Reference in New Issue