Re: [PATCH] rxrpc: initialize sched to false to ensure it is not a garbage value

2016-09-05 Thread David Howells
Colin King wrote: > From: Colin Ian King > > sched will be uninitialized (and contain a garbage value) in the case > where call->state >= RXRPC_CALL_DEAD; fix this by initializing sched > to false to avoid an inadvertent call to

[PATCH] rxrpc: initialize sched to false to ensure it is not a garbage value

2016-09-05 Thread Colin King
From: Colin Ian King sched will be uninitialized (and contain a garbage value) in the case where call->state >= RXRPC_CALL_DEAD; fix this by initializing sched to false to avoid an inadvertent call to rxrpc_queue_call. Signed-off-by: Colin Ian King