mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 14:10:49 +07:00
[PATCH] pcmcia: handle __copy_from_user() return value in ioctl
Handle __copy_from_user() return value. drivers/pcmcia/pcmcia_ioctl.c:597: warning: ignoring return value of '__copy_from_user', declared with attribute warn_unused_result Noticed and first fix by Randy Dunlap. Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
This commit is contained in:
parent
1d2c90425d
commit
9374074f9b
@ -594,7 +594,12 @@ static int ds_ioctl(struct inode * inode, struct file * file,
|
||||
|
||||
err = ret = 0;
|
||||
|
||||
if (cmd & IOC_IN) __copy_from_user((char *)buf, uarg, size);
|
||||
if (cmd & IOC_IN) {
|
||||
if (__copy_from_user((char *)buf, uarg, size)) {
|
||||
err = -EFAULT;
|
||||
goto free_out;
|
||||
}
|
||||
}
|
||||
|
||||
switch (cmd) {
|
||||
case DS_ADJUST_RESOURCE_INFO:
|
||||
|
Loading…
Reference in New Issue
Block a user