mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-19 15:39:07 +00:00
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: Dan Carpenter <error27@gmail.com> Cc: "Michael H. Warfield" <mhw@wittsend.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
f64ac9830b
commit
05254a207a
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user