https://github.com/torvalds/linux
Revision 0f05058531330854ff383237e1547044c67e5740 authored by Julia Lawall on 17 December 2009, 23:27:09 UTC, committed by Linus Torvalds on 17 December 2009, 23:45:30 UTC
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 <julia@diku.dk>
Acked-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Cc: Joseph Chan <JosephChan@via.com.tw>
Cc: Scott Fang <ScottFang@viatech.com.cn>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 312ea07
History
Tip revision: 0f05058531330854ff383237e1547044c67e5740 authored by Julia Lawall on 17 December 2009, 23:27:09 UTC
drivers/video/via/viafbdev.c: correct code taking the size of a pointer
Tip revision: 0f05058
File Mode Size
drivers
include
kernel
os-Linux
scripts
sys-i386
sys-ia64
sys-ppc
sys-x86_64
Kconfig.char -rw-r--r-- 8.5 KB
Kconfig.common -rw-r--r-- 879 bytes
Kconfig.debug -rw-r--r-- 1.0 KB
Kconfig.net -rw-r--r-- 8.5 KB
Kconfig.rest -rw-r--r-- 629 bytes
Kconfig.um -rw-r--r-- 5.1 KB
Kconfig.x86 -rw-r--r-- 1.0 KB
Makefile -rw-r--r-- 4.9 KB
Makefile-i386 -rw-r--r-- 1.4 KB
Makefile-ia64 -rw-r--r-- 32 bytes
Makefile-os-Linux -rw-r--r-- 235 bytes
Makefile-ppc -rw-r--r-- 203 bytes
Makefile-skas -rw-r--r-- 290 bytes
Makefile-x86_64 -rw-r--r-- 640 bytes
defconfig -rw-r--r-- 14.9 KB

back to top