V4L/DVB: drivers/media/video/zoran: Use kmemdup
authorJulia Lawall <julia@diku.dk>
Thu, 1 Jul 2010 04:52:33 +0000 (01:52 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 2 Aug 2010 18:04:04 +0000 (15:04 -0300)
commit7a12f4b50dad4fdffd218c6fba6b9564bf86185e
treeebb73277de59c7ee5299d830c7bf976960cccecc
parentcd3172d7dabdac4545d8246da62b570b9acf8058
V4L/DVB: drivers/media/video/zoran: 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/)

// <smpl>
@@
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);
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Douglas Schilling Landgraf <dougsland@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/zoran/videocodec.c