All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Next branch: authgss: authgss.c: Fix warnings for uninitizlized variable expire
@ 2014-09-01 11:32 Shakil A Khan
  2014-09-01 13:50   ` Trond Myklebust
  0 siblings, 1 reply; 11+ messages in thread
From: Shakil A Khan @ 2014-09-01 11:32 UTC (permalink / raw)
  To: linux-nfs
  Cc: linux-kernel, netdev, peterz, paulmck, andros, jlayton, davem,
	bfields, trond.myklebust, Shakil A Khan

Signed-off-by : Shakil A Khan <shakilk1729@gmail.com>
---
 net/sunrpc/auth_gss/auth_gss.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/sunrpc/auth_gss/auth_gss.c b/net/sunrpc/auth_gss/auth_gss.c
index afb292c..bea0951 100644
--- a/net/sunrpc/auth_gss/auth_gss.c
+++ b/net/sunrpc/auth_gss/auth_gss.c
@@ -1387,7 +1387,7 @@ gss_key_timeout(struct rpc_cred *rc)
 	struct gss_cred *gss_cred = container_of(rc, struct gss_cred, gc_base);
 	struct gss_cl_ctx *ctx;
 	unsigned long now = jiffies;
-	unsigned long expire;
+	unsigned long expire = 0;
 
 	rcu_read_lock();
 	ctx = rcu_dereference(gss_cred->gc_ctx);
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2014-09-02 16:05 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-01 11:32 [PATCH] Next branch: authgss: authgss.c: Fix warnings for uninitizlized variable expire Shakil A Khan
2014-09-01 13:50 ` Trond Myklebust
2014-09-01 13:50   ` Trond Myklebust
2014-09-02 10:52   ` Boaz Harrosh
2014-09-02 13:21     ` Bruce Fields
2014-09-02 13:21       ` Bruce Fields
2014-09-02 13:59       ` Boaz Harrosh
2014-09-02 13:59         ` Boaz Harrosh
2014-09-02 14:17         ` Bruce Fields
2014-09-02 14:17           ` Bruce Fields
2014-09-02 16:05           ` Boaz Harrosh

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.