From: \"J. Bruce Fields\ Date: Tue, 23 Dec 2008 21:06:33 +0000 (-0500) Subject: rpc: remove unnecessary assignment X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=99db35636842ede13bf3b6bf1a8d8f4f1c4c93bf;p=linux-beck.git rpc: remove unnecessary assignment We're just about to kfree() gss_auth, so there's no point to setting any of its fields. Signed-off-by: J. Bruce Fields Signed-off-by: Trond Myklebust --- diff --git a/net/sunrpc/auth_gss/auth_gss.c b/net/sunrpc/auth_gss/auth_gss.c index cb19c9ded1fa..ea4567fae5dd 100644 --- a/net/sunrpc/auth_gss/auth_gss.c +++ b/net/sunrpc/auth_gss/auth_gss.c @@ -650,7 +650,6 @@ static void gss_free(struct gss_auth *gss_auth) { rpc_unlink(gss_auth->dentry); - gss_auth->dentry = NULL; gss_mech_put(gss_auth->mech); kfree(gss_auth);