]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
cifs: check for NULL session password
authorJeff Layton <jlayton@redhat.com>
Mon, 23 Aug 2010 15:38:04 +0000 (11:38 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 8 Aug 2011 17:23:16 +0000 (10:23 -0700)
commit 24e6cf92fde1f140d8eb0bf7cd24c2c78149b6b2 upstream.

It's possible for a cifsSesInfo struct to have a NULL password, so we
need to check for that prior to running strncmp on it.

Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
fs/cifs/connect.c

index e15b09457a96e75dec028572d4abee575b5c07dd..b6bb82ec278e9c854ea9fd167aee86a883a94e6d 100644 (file)
@@ -1605,6 +1605,7 @@ cifs_find_smb_ses(struct TCP_Server_Info *server, struct smb_vol *vol)
                                    MAX_USERNAME_SIZE))
                                continue;
                        if (strlen(vol->username) != 0 &&
+                           ses->password != NULL &&
                            strncmp(ses->password,
                                    vol->password ? vol->password : "",
                                    MAX_PASSWORD_SIZE))