]> git.baikalelectronics.ru Git - kernel.git/commit
ipv4: remove redundant assignment to n
authorColin Ian King <colin.king@canonical.com>
Fri, 24 May 2019 21:56:58 +0000 (22:56 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 27 May 2019 05:11:58 +0000 (22:11 -0700)
commitec138649f53c262016b8cd546b214bd8371047a7
tree89fc40e7149cfbdf409e41f260fb40188add0711
parentd1c9c33a876afaa3ce45692d0173c4e673a8c1eb
ipv4: remove redundant assignment to n

The pointer n is being assigned a value however this value is
never read in the code block and the end of the code block
continues to the next loop iteration. Clean up the code by
removing the redundant assignment.

Fixes: 703e9699e4209 ("ipv4: Add function to send route updates")
Addresses-Coverity: ("Unused value")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/fib_trie.c