From: Julia Lawall Date: Thu, 1 Jul 2010 04:30:11 +0000 (-0300) Subject: V4L/DVB: drivers/media/video/gspca: Use kmemdup X-Git-Tag: v2.6.36-rc1~582^2~147 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=feda79bffc19e5e1e442966853f58c3b9c7bac0b;p=pandora-kernel.git V4L/DVB: drivers/media/video/gspca: Use kmemdup Use kmemdup when some other buffer is immediately copied into the allocated region. A simplified version of the semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ expression from,to,size,flag; statement S; @@ - to = \(kmalloc\|kzalloc\)(size,flag); + to = kmemdup(from,size,flag); if (to==NULL || ...) S - memcpy(to, from, size); // Signed-off-by: Julia Lawall Signed-off-by: Douglas Schilling Landgraf Signed-off-by: Mauro Carvalho Chehab --- Reading git-diff-tree failed