mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-21 08:53:41 +00:00
NFSD: Fix bad using of return value from qword_get
Signed-off-by: Kinglong Mee <kinglongmee@gmail.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
This commit is contained in:
parent
15d176c195
commit
48c348b09c
@ -368,7 +368,7 @@ nametoid_parse(struct cache_detail *cd, char *buf, int buflen)
|
|||||||
{
|
{
|
||||||
struct ent ent, *res;
|
struct ent ent, *res;
|
||||||
char *buf1;
|
char *buf1;
|
||||||
int error = -EINVAL;
|
int len, error = -EINVAL;
|
||||||
|
|
||||||
if (buf[buflen - 1] != '\n')
|
if (buf[buflen - 1] != '\n')
|
||||||
return (-EINVAL);
|
return (-EINVAL);
|
||||||
@ -392,8 +392,8 @@ nametoid_parse(struct cache_detail *cd, char *buf, int buflen)
|
|||||||
IDMAP_TYPE_USER : IDMAP_TYPE_GROUP;
|
IDMAP_TYPE_USER : IDMAP_TYPE_GROUP;
|
||||||
|
|
||||||
/* Name */
|
/* Name */
|
||||||
error = qword_get(&buf, buf1, PAGE_SIZE);
|
len = qword_get(&buf, buf1, PAGE_SIZE);
|
||||||
if (error <= 0 || error >= IDMAP_NAMESZ)
|
if (len <= 0 || len >= IDMAP_NAMESZ)
|
||||||
goto out;
|
goto out;
|
||||||
memcpy(ent.name, buf1, sizeof(ent.name));
|
memcpy(ent.name, buf1, sizeof(ent.name));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user