Julia Lawall 4d682420ce mtd: block2mtd: Use kasprintf
kasprintf combines kmalloc and sprintf, and takes care of the size
calculation itself.

The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@@
expression a,flag;
expression list args;
statement S;
@@

  a =
-  \(kmalloc\|kzalloc\)(...,flag)
+  kasprintf(flag,args)
  <... when != a
  if (a == NULL || ...) S
  ...>
- sprintf(a,args);
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
2010-03-18 15:04:09 +00:00
..
2010-03-18 15:04:09 +00:00
2009-03-20 13:16:26 +00:00
2009-03-20 13:16:26 +00:00
2009-03-20 13:16:26 +00:00
2009-12-16 10:23:43 -08:00
2010-03-18 07:53:16 +00:00
2008-06-04 17:50:17 +01:00
2008-06-04 17:50:17 +01:00