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

From: Colin King
Date: Mon Sep 05 2016 - 13:01:38 EST


From: Colin Ian King <colin.king@xxxxxxxxxxxxx>

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 <colin.king@xxxxxxxxxxxxx>
---
net/rxrpc/call_object.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/rxrpc/call_object.c b/net/rxrpc/call_object.c
index 516d8ea..57e00fc 100644
--- a/net/rxrpc/call_object.c
+++ b/net/rxrpc/call_object.c
@@ -586,7 +586,7 @@ static void rxrpc_dead_call_expired(unsigned long _call)
*/
static void rxrpc_mark_call_released(struct rxrpc_call *call)
{
- bool sched;
+ bool sched = false;

rxrpc_see_call(call);
write_lock(&call->state_lock);
--
2.9.3