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

@malloc_to_calloc@
identifier f =~ "(tor_malloc|tor_malloc_zero)";
expression a, 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)