Re: [PATCH][next] binder: remove redundant assignment to pointer n

2020-09-11 Thread Christian Brauner
On Thu, Sep 10, 2020 at 04:12:21PM +0100, Colin King wrote: > From: Colin Ian King > > The pointer n is being initialized 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

Re: [PATCH][next] binder: remove redundant assignment to pointer n

2020-09-10 Thread Todd Kjos
On Thu, Sep 10, 2020 at 8:12 AM Colin King wrote: > > From: Colin Ian King > > The pointer n is being initialized 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") > Sign

[PATCH][next] binder: remove redundant assignment to pointer n

2020-09-10 Thread Colin King
From: Colin Ian King The pointer n is being initialized 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 --- drivers/android/binder_alloc.c | 2