diff options
author | Himangi Saraogi <himangi774@gmail.com> | 2014-06-28 20:36:29 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-07-08 02:00:31 +0200 |
commit | b98fe24ca7d0effdd4c47a9f681d9e4f10442827 (patch) | |
tree | a4f2123ff4fbed0c83aad92b862cfefca1d8c584 /virt | |
parent | Merge branch 'ptp-vlan' (diff) | |
download | linux-b98fe24ca7d0effdd4c47a9f681d9e4f10442827.tar.xz linux-b98fe24ca7d0effdd4c47a9f681d9e4f10442827.zip |
batman-adv: 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:
// <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: Himangi Saraogi <himangi774@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'virt')
0 files changed, 0 insertions, 0 deletions