mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-13 00:29:50 +00:00
[PATCH] nfsd: sign conversion obscuring errors in nfsd_set_posix_acl()
Assigning the result of posix_acl_to_xattr() to an unsigned data type (size/size_t) obscures possible errors. Coverity CID: 1206. Signed-off-by: Florin Malita <fmalita@gmail.com> Acked-by: NeilBrown <neilb@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
2adc7d47c4
commit
9ccfc29c67
@ -1922,11 +1922,10 @@ nfsd_set_posix_acl(struct svc_fh *fhp, int type, struct posix_acl *acl)
|
|||||||
value = kmalloc(size, GFP_KERNEL);
|
value = kmalloc(size, GFP_KERNEL);
|
||||||
if (!value)
|
if (!value)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
size = posix_acl_to_xattr(acl, value, size);
|
error = posix_acl_to_xattr(acl, value, size);
|
||||||
if (size < 0) {
|
if (error < 0)
|
||||||
error = size;
|
|
||||||
goto getout;
|
goto getout;
|
||||||
}
|
size = error;
|
||||||
} else
|
} else
|
||||||
size = 0;
|
size = 0;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user