The second argument to tor_calloc should be a constant.

Just like the conventional calloc.
This commit is contained in:
Mansour Moufid 2014-10-19 12:20:36 -04:00 committed by Nick Mathewson
parent a746081f38
commit 533790ca77

View File

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