mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] fs/nfsd: Delete invalid assignment statements in nfsd4_decode_exchange_id
@ 2018-07-22  8:50 nixiaoming
  2018-07-22 18:12 ` Chuck Lever
  0 siblings, 1 reply; 6+ messages in thread
From: nixiaoming @ 2018-07-22  8:50 UTC (permalink / raw)
  To: bfields, jlayton; +Cc: linux-nfs, linux-kernel, nixiaoming

dummy = be32_to_cpup(p++);
dummy = be32_to_cpup(p++);
Assigning value to "dummy" here, but that stored value
is overwritten before it can be used.

delete invalid assignment statements in nfsd4_decode_exchange_id

Signed-off-by: n00202754 <nixiaoming@huawei.com>
---
 fs/nfsd/nfs4xdr.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c
index a96843c..8e78541 100644
--- a/fs/nfsd/nfs4xdr.c
+++ b/fs/nfsd/nfs4xdr.c
@@ -1392,8 +1392,8 @@ nfsd4_decode_exchange_id(struct nfsd4_compoundargs *argp,
 
 		/* ssp_window and ssp_num_gss_handles */
 		READ_BUF(8);
-		dummy = be32_to_cpup(p++);
-		dummy = be32_to_cpup(p++);
+		be32_to_cpup(p++);
+		be32_to_cpup(p++);
 		break;
 	default:
 		goto xdr_error;
-- 
2.10.1


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

end of thread, other threads:[~2018-07-23  2:16 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-22  8:50 [PATCH] fs/nfsd: Delete invalid assignment statements in nfsd4_decode_exchange_id nixiaoming
2018-07-22 18:12 ` Chuck Lever
2018-07-22 18:33   ` Trond Myklebust
2018-07-22 19:01     ` Chuck Lever
2018-07-22 19:08       ` Trond Myklebust
2018-07-23  2:16         ` Nixiaoming

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®