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
release: ChangeLog and ReleaseNotes for 0.4.8.5
[tor.git]
/
scripts
/
coccinelle
/
test_assert_null.cocci
blob
3d66e1ee0b96ac68829651967d459c5ca873c00f
1
@@
2
expression * e;
3
@@
4
5
(
6
- tt_assert(e != NULL)
7
+ tt_ptr_op(e, OP_NE, NULL)
8
|
9
- tt_assert(e == NULL)
10
+ tt_ptr_op(e, OP_EQ, NULL)
11
)