telephony: fix return value
If copy_from_user fails, the return value gets overwritten. Signed-off-by: Nicolas Kaiser <nikai@nikai.net> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
committed by
Jiri Kosina
parent
229aebb873
commit
b0438a1b71
@@ -6581,6 +6581,7 @@ static long do_ixj_ioctl(struct file *file_p, unsigned int cmd, unsigned long ar
|
|||||||
case IXJCTL_SET_FILTER:
|
case IXJCTL_SET_FILTER:
|
||||||
if (copy_from_user(&jf, argp, sizeof(jf)))
|
if (copy_from_user(&jf, argp, sizeof(jf)))
|
||||||
retval = -EFAULT;
|
retval = -EFAULT;
|
||||||
|
else
|
||||||
retval = ixj_init_filter(j, &jf);
|
retval = ixj_init_filter(j, &jf);
|
||||||
break;
|
break;
|
||||||
case IXJCTL_SET_FILTER_RAW:
|
case IXJCTL_SET_FILTER_RAW:
|
||||||
|
Reference in New Issue
Block a user