[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20221004062333.416225-1-usama.anjum@collabora.com>
Date: Tue, 4 Oct 2022 11:23:32 +0500
From: Muhammad Usama Anjum <usama.anjum@...labora.com>
To: Steve French <sfrench@...ba.org>, Paulo Alcantara <pc@....nz>,
Ronnie Sahlberg <lsahlber@...hat.com>,
Shyam Prasad N <sprasad@...rosoft.com>,
Tom Talpey <tom@...pey.com>
Cc: Muhammad Usama Anjum <usama.anjum@...labora.com>,
kernel@...labora.com, kernel-janitors@...r.kernel.org,
linux-cifs@...r.kernel.org, samba-technical@...ts.samba.org,
linux-kernel@...r.kernel.org
Subject: [PATCH 1/2] cifs: remove initialization value
Don't initialize the rc as its value is being overwritten before its
use.
Signed-off-by: Muhammad Usama Anjum <usama.anjum@...labora.com>
---
fs/cifs/smb2pdu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/cifs/smb2pdu.c b/fs/cifs/smb2pdu.c
index 0600f0a07628..2bf43c892ae6 100644
--- a/fs/cifs/smb2pdu.c
+++ b/fs/cifs/smb2pdu.c
@@ -879,7 +879,7 @@ SMB2_negotiate(const unsigned int xid,
struct smb2_negotiate_rsp *rsp;
struct kvec iov[1];
struct kvec rsp_iov;
- int rc = 0;
+ int rc;
int resp_buftype;
int blob_offset, blob_length;
char *security_blob;
--
2.30.2
Powered by blists - more mailing lists