clarify debug-level log while initializing entropy
[tor.git] / scripts / coccinelle / uncalloc.cocci
blobbf3f74165aced1581c214aa6d2302418274f5754
2 @@
3 expression a;
4 @@
5 - tor_calloc(1, a)
6 + tor_malloc_zero(a)
8 @@
9 expression a;
11 - tor_calloc(a, 1)
12 + tor_malloc_zero(a)