diff options
author | Colin Ian King <colin.king@canonical.com> | 2021-06-13 14:46:36 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-06-14 12:42:26 -0700 |
commit | b5ec0705ffe891910e8e615b2efb1c2b292e917c (patch) | |
tree | 67a85bdb08cf8cc8636bdccde18524120c42e9d6 /net/ipv6 | |
parent | ce4f8afd85d6871e3ad76ce737fbbfc0521fa3e4 (diff) |
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>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/fib6_rules.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/fib6_rules.c b/net/ipv6/fib6_rules.c index 8f9a83314de7..40f3e4f9f33a 100644 --- a/net/ipv6/fib6_rules.c +++ b/net/ipv6/fib6_rules.c @@ -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) { struct fib_rules_ops *ops; - int err = -ENOMEM; + int err; ops = fib_rules_register(&fib6_rules_ops_template, net); if (IS_ERR(ops)) |