提交 e110ab94 编写于 作者: A Al Viro

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

Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
上级 3023b438
......@@ -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;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册