cifs: fix a possible use of uninit variable in SMB2_sess_setup
authorNamjae Jeon <namjae.jeon@samsung.com>
Wed, 20 Aug 2014 10:39:41 +0000 (19:39 +0900)
committerSteve French <smfrench@gmail.com>
Thu, 21 Aug 2014 17:12:59 +0000 (12:12 -0500)
In case of error, goto ssetup_exit can be hit and we could end up using
uninitialized value of resp_buftype

Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: Ashish Sangwan <a.sangwan@samsung.com>
Signed-off-by: Steve French <smfrench@gmail.com>
fs/cifs/smb2pdu.c

index fa0dd04..9df5d8e 100644 (file)
@@ -530,7 +530,7 @@ SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses,
        struct smb2_sess_setup_rsp *rsp = NULL;
        struct kvec iov[2];
        int rc = 0;
-       int resp_buftype;
+       int resp_buftype = CIFS_NO_BUFFER;
        __le32 phase = NtLmNegotiate; /* NTLMSSP, if needed, is multistage */
        struct TCP_Server_Info *server = ses->server;
        u16 blob_length = 0;