Re: [PATCH][next] ipv4: remove redundant assignment to n

2019-05-26 Thread David Miller
From: Colin King Date: Fri, 24 May 2019 22:56:58 +0100 > From: Colin Ian King > > 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 assi

Re: [PATCH][next] ipv4: remove redundant assignment to n

2019-05-24 Thread David Ahern
On 5/24/19 3:56 PM, Colin King wrote: > From: Colin Ian King > > 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. > > Addres

[PATCH][next] ipv4: remove redundant assignment to n

2019-05-24 Thread Colin King
From: Colin Ian King 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. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ia