1
0
Fork 0

[PATCH] fix __user annotations in fs/select.c

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
hifive-unleashed-5.1
Al Viro 2006-02-01 05:26:09 -05:00
parent 3023b438c4
commit e110ab94eb
1 changed files with 2 additions and 2 deletions

View File

@ -510,9 +510,9 @@ asmlinkage long sys_pselect6(int n, fd_set __user *inp, fd_set __user *outp,
if (sig) {
if (!access_ok(VERIFY_READ, sig, sizeof(void *)+sizeof(size_t))
|| __get_user(up, (sigset_t * __user *)sig)
|| __get_user(up, (sigset_t __user * __user *)sig)
|| __get_user(sigsetsize,
(size_t * __user)(sig+sizeof(void *))))
(size_t __user *)(sig+sizeof(void *))))
return -EFAULT;
}