mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
21 lines
350 B
Plaintext
21 lines
350 B
Plaintext
|
// Use calloc or realloc as appropriate instead of multiply-and-alloc
|
||
|
|
||
|
@malloc_to_calloc@
|
||
|
expression a,b;
|
||
|
@@
|
||
|
- tor_malloc(a * b)
|
||
|
+ tor_calloc(a, b)
|
||
|
|
||
|
@malloc_zero_to_calloc@
|
||
|
expression a, b;
|
||
|
@@
|
||
|
- tor_malloc_zero(a * b)
|
||
|
+ tor_calloc(a, b)
|
||
|
|
||
|
@realloc_to_reallocarray@
|
||
|
expression a, b;
|
||
|
expression p;
|
||
|
@@
|
||
|
- tor_realloc(p, a * b)
|
||
|
+ tor_reallocarray(p, a, b)
|