repo.or.cz
/
tor.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix spacing in if statement in port_parse_config()
[tor.git]
/
scripts
/
coccinelle
/
uncalloc.cocci
blob
bf3f74165aced1581c214aa6d2302418274f5754
1
2
@@
3
expression a;
4
@@
5
- tor_calloc(1, a)
6
+ tor_malloc_zero(a)
7
8
@@
9
expression a;
10
@@
11
- tor_calloc(a, 1)
12
+ tor_malloc_zero(a)
13