Commit 10238074 authored by Sachin Prabhu's avatar Sachin Prabhu Committed by Steve French

Remove unnecessary check for NULL in password parser

The password parser has an unnecessary check for a NULL value which
triggers warnings in source checking tools. The code contains artifacts
from the old parsing code which are no longer required.
Signed-off-by: default avatarSachin Prabhu <sprabhu@redhat.com>
Reviewed-by: default avatarJeff Layton <jlayton@redhat.com>
Reported-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarSteve French <sfrench@us.ibm.com>
parent 66189be7
...@@ -1565,8 +1565,7 @@ cifs_parse_mount_options(const char *mountdata, const char *devname, ...@@ -1565,8 +1565,7 @@ cifs_parse_mount_options(const char *mountdata, const char *devname,
/* Obtain the value string */ /* Obtain the value string */
value = strchr(data, '='); value = strchr(data, '=');
if (value != NULL) value++;
*value++ = '\0';
/* Set tmp_end to end of the string */ /* Set tmp_end to end of the string */
tmp_end = (char *) value + strlen(value); tmp_end = (char *) value + strlen(value);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment