cifs: remove redundant check for null string pointer
authorColin Ian King <colin.king@canonical.com>
Mon, 25 Jan 2016 16:25:54 +0000 (16:25 +0000)
committerSteve French <smfrench@gmail.com>
Thu, 11 Feb 2016 00:04:53 +0000 (18:04 -0600)
commit997152f62751b7d16f1b864121c912fd19032bdf
tree25709cdc1d7c816df484fc477c57eacb70d0187d
parent74c7b2af37ad431c3b69961a5cdbd0a92292c92a
cifs: remove redundant check for null string pointer

server_RFC1001_name is declared as a RFC1001_NAME_LEN_WITH_NULL sized
char array in struct TCP_Server_Info so the null pointer check on
server_RFC1001_name is redundant and can be removed.  Detected with
smatch:

fs/cifs/connect.c:2982 ip_rfc1001_connect() warn: this array is probably
  non-NULL. 'server->server_RFC1001_name'

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Steve French <smfrench@gmail.com>
fs/cifs/connect.c