mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 17:41:44 +00:00
net: ipv4: remove redundant assignment to variable rc
The variable rc is being assigned with a value that is never read and it is being updated later with a new value. The initialization 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
bd1266d3f2
commit
b6246f4d8d
@ -1914,7 +1914,7 @@ static int __init inet_init(void)
|
||||
{
|
||||
struct inet_protosw *q;
|
||||
struct list_head *r;
|
||||
int rc = -EINVAL;
|
||||
int rc;
|
||||
|
||||
sock_skb_cb_check_size(sizeof(struct inet_skb_parm));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user