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

Commit 05254a20 authored by Dan Carpenter's avatar Dan Carpenter Committed by Greg Kroah-Hartman
Browse files

ip2: return -EFAULT on copy_to_user errors



copy_to_user() returns the number of bytes remaining but we want to return
a negative error code on errors.

Signed-off-by: default avatarDan Carpenter <error27@gmail.com>
Cc: "Michael H. Warfield" <mhw@wittsend.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent f64ac983
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -2930,6 +2930,8 @@ ip2_ipl_ioctl (struct file *pFile, UINT cmd, ULONG arg )
				if ( pCh )
				{
					rc = copy_to_user(argp, pCh, sizeof(i2ChanStr));
					if (rc)
						rc = -EFAULT;
				} else {
					rc = -ENODEV;
				}