Commit 4cd1ec95 authored by Dan Carpenter's avatar Dan Carpenter Committed by Anna Schumaker

NFS: silence a uninitialized variable warning

Static checkers have gotten clever enough to complain that "id_long" is
uninitialized on the failure path.  It's harmless, but simple to fix.
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarAnna Schumaker <Anna.Schumaker@Netapp.com>
parent ce85bd29
...@@ -364,7 +364,8 @@ static int nfs_idmap_lookup_id(const char *name, size_t namelen, const char *typ ...@@ -364,7 +364,8 @@ static int nfs_idmap_lookup_id(const char *name, size_t namelen, const char *typ
ret = -EINVAL; ret = -EINVAL;
} else { } else {
ret = kstrtol(id_str, 10, &id_long); ret = kstrtol(id_str, 10, &id_long);
*id = (__u32)id_long; if (!ret)
*id = (__u32)id_long;
} }
return ret; return ret;
} }
......
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