aboutsummaryrefslogtreecommitdiff
path: root/scripts/coccinelle/calloc.cocci
blob: df0b61de067e4960c5b8c5e5581591f62f431cce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Use calloc or realloc as appropriate instead of multiply-and-alloc

@malloc_to_calloc@
identifier f =~ "(tor_malloc|tor_malloc_zero)";
expression a;
constant b;
@@
- f(a * b)
+ tor_calloc(a, b)

@realloc_to_reallocarray@
expression a, b;
expression p;
@@
- tor_realloc(p, a * b)
+ tor_reallocarray(p, a, b)