projects
/
platform
/
kernel
/
linux-arm64.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
229aebb
)
telephony: fix return value
author
Nicolas Kaiser
<nikai@nikai.net>
Fri, 29 Oct 2010 09:41:42 +0000
(11:41 +0200)
committer
Jiri Kosina
<jkosina@suse.cz>
Fri, 29 Oct 2010 09:41:42 +0000
(11:41 +0200)
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>
drivers/telephony/ixj.c
patch
|
blob
|
history
diff --git
a/drivers/telephony/ixj.c
b/drivers/telephony/ixj.c
index
0d236f4
..
2d1280a
100644
(file)
--- a/
drivers/telephony/ixj.c
+++ b/
drivers/telephony/ixj.c
@@
-6581,7
+6581,8
@@
static long do_ixj_ioctl(struct file *file_p, unsigned int cmd, unsigned long ar
case IXJCTL_SET_FILTER:
if (copy_from_user(&jf, argp, sizeof(jf)))
retval = -EFAULT;
- retval = ixj_init_filter(j, &jf);
+ else
+ retval = ixj_init_filter(j, &jf);
break;
case IXJCTL_SET_FILTER_RAW:
if (copy_from_user(&jfr, argp, sizeof(jfr)))