smb3: add missing null server pointer check
authorSteve French <stfrench@microsoft.com>
Mon, 5 Feb 2024 20:43:17 +0000 (14:43 -0600)
committerSteve French <stfrench@microsoft.com>
Thu, 8 Feb 2024 16:50:40 +0000 (10:50 -0600)
Address static checker warning in cifs_ses_get_chan_index():
    warn: variable dereferenced before check 'server'
To be consistent, and reduce risk, we should add another check
for null server pointer.

Fixes: 88675b22d34e ("cifs: do not search for channel if server is terminating")
Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
Reviewed-by: Shyam Prasad N <sprasad@microsoft.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/smb/client/sess.c

index ed4bd88dd528aab05c9594120116303ca35975e0..476d54fceb50f0319e908ead9f9d25087c906cbd 100644 (file)
@@ -76,7 +76,7 @@ cifs_ses_get_chan_index(struct cifs_ses *ses,
        unsigned int i;
 
        /* if the channel is waiting for termination */
-       if (server->terminate)
+       if (server && server->terminate)
                return CIFS_INVAL_CHAN_INDEX;
 
        for (i = 0; i < ses->chan_count; i++) {