projects
/
platform
/
kernel
/
linux-3.10.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5690085
)
V4L/DVB: IR/lirc: use memdup_user instead of copy_from_user
author
Jarod Wilson
<jarod@redhat.com>
Fri, 16 Jul 2010 21:29:54 +0000
(18:29 -0300)
committer
Mauro Carvalho Chehab
<mchehab@redhat.com>
Mon, 2 Aug 2010 19:42:56 +0000
(16:42 -0300)
Signed-off-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/IR/ir-lirc-codec.c
patch
|
blob
|
history
diff --git
a/drivers/media/IR/ir-lirc-codec.c
b/drivers/media/IR/ir-lirc-codec.c
index
afb1ada
..
ee1f2d4
100644
(file)
--- a/
drivers/media/IR/ir-lirc-codec.c
+++ b/
drivers/media/IR/ir-lirc-codec.c
@@
-74,14
+74,9
@@
static ssize_t ir_lirc_transmit_ir(struct file *file, const char *buf,
if (count > LIRCBUF_SIZE || count % 2 == 0)
return -EINVAL;
- txbuf = kzalloc(sizeof(int) * LIRCBUF_SIZE, GFP_KERNEL);
- if (!txbuf)
- return -ENOMEM;
-
- if (copy_from_user(txbuf, buf, n)) {
- ret = -EFAULT;
- goto out;
- }
+ txbuf = memdup_user(buf, n);
+ if (IS_ERR(txbuf))
+ return PTR_ERR(txbuf);
ir_dev = lirc->ir_dev;
if (!ir_dev) {