Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bffea77c authored by Dan Carpenter's avatar Dan Carpenter Committed by Linus Torvalds
Browse files

compat: return -EFAULT on error in waitid()



The copy_to_user() call returns the number of bytes remaining but we
want to return -EFAULT on error.

Fixes "x32: fix waitid()"

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 9a8ab1c3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -593,7 +593,7 @@ COMPAT_SYSCALL_DEFINE5(waitid,
		else
			ret = put_compat_rusage(&ru, uru);
		if (ret)
			return ret;
			return -EFAULT;
	}

	BUG_ON(info.si_code & __SI_MASK);