Staging: comedi: Return -EFAULT if copy_to_user() fails
commit cab36da4bf1a35739b091b73714a39a1bbd02b05 upstream. Return -EFAULT on error instead of the number of bytes remaining to be copied. Fixes: bac42fb21259 ("comedi: get rid of compat_alloc_user_space() mess in COMEDI_CMD{,TEST} compat") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Cc: stable <stable@vger.kernel.org> Link: https://lore.kernel.org/r/X8c3pfwFy2jpy4BP@mwanda Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
cb5a170e97
commit
b8c9bb1393
@ -2987,7 +2987,9 @@ static int put_compat_cmd(struct comedi32_cmd_struct __user *cmd32,
|
||||
v32.chanlist_len = cmd->chanlist_len;
|
||||
v32.data = ptr_to_compat(cmd->data);
|
||||
v32.data_len = cmd->data_len;
|
||||
return copy_to_user(cmd32, &v32, sizeof(v32));
|
||||
if (copy_to_user(cmd32, &v32, sizeof(v32)))
|
||||
return -EFAULT;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Handle 32-bit COMEDI_CMD ioctl. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user