Refactor the calloc semantic patch.

This does not change its effects.
This commit is contained in:
Mansour Moufid 2014-10-19 12:18:31 -04:00 committed by Nick Mathewson
parent 3206dbdce1
commit a746081f38

View File

@ -1,15 +1,10 @@
// 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@
identifier f =~ "(tor_malloc|tor_malloc_zero)";
expression a, b;
@@
- tor_malloc_zero(a * b)
- f(a * b)
+ tor_calloc(a, b)
@realloc_to_reallocarray@