diff options
author | Julia Lawall <[email protected]> | 2009-12-17 15:27:09 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2009-12-17 15:45:30 -0800 |
commit | 0f05058531330854ff383237e1547044c67e5740 (patch) | |
tree | 874207002e578f24a44977bae456b147f6f8d80e /lib/debugobjects.c | |
parent | 312ea07bf067d41b339473e696f9199245d762f3 (diff) |
drivers/video/via/viafbdev.c: correct code taking the size of a pointer
sizeof(viafb_gamma_table) is just the size of the pointer. This is changed
to the size used when calling kmalloc to initialize the pointer.
A simplified version of the semantic patch that finds this problem is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
@@
expression *x;
expression f;
type T;
@@
*f(...,(T)x,...)
// </smpl>
Signed-off-by: Julia Lawall <[email protected]>
Acked-by: Florian Tobias Schandinat <[email protected]>
Cc: Joseph Chan <[email protected]>
Cc: Scott Fang <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'lib/debugobjects.c')
0 files changed, 0 insertions, 0 deletions