projects
/
platform
/
kernel
/
linux-stable.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
58c6d6d
)
Staging: dream, fix buf overflow
author
Jiri Slaby
<jirislaby@gmail.com>
Sat, 8 Aug 2009 09:33:58 +0000
(11:33 +0200)
committer
Greg Kroah-Hartman
<gregkh@suse.de>
Tue, 15 Sep 2009 19:02:04 +0000
(12:02 -0700)
In vfe_send_msg_no_payload there is a wrong struct vfe_message allocation.
It allocates only sizeof(pointer to vfe_message) for a whole structure.
Add a dereference to the sizeof to allocate sizeof(vfe_message).
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/dream/camera/msm_vfe8x_proc.c
patch
|
blob
|
history
diff --git
a/drivers/staging/dream/camera/msm_vfe8x_proc.c
b/drivers/staging/dream/camera/msm_vfe8x_proc.c
index
bb65013
..
5436f71
100644
(file)
--- a/
drivers/staging/dream/camera/msm_vfe8x_proc.c
+++ b/
drivers/staging/dream/camera/msm_vfe8x_proc.c
@@
-818,7
+818,7
@@
static void vfe_send_msg_no_payload(enum VFE_MESSAGE_ID id)
{
struct vfe_message *msg;
- msg = kzalloc(sizeof(msg), GFP_ATOMIC);
+ msg = kzalloc(sizeof(
*
msg), GFP_ATOMIC);
if (!msg)
return;