repo.or.cz
/
qemu
/
kevin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
pcie: factor out pcie_cap_slot_unplug()
[qemu/kevin.git]
/
scripts
/
coccinelle
/
error_propagate_null.cocci
blob
c23638007ab3aa168063c35ead29f09e3f2f7bd6
1
// error_propagate() already ignores local_err==NULL, so there's
2
// no need to check it before calling.
3
4
@@
5
identifier L;
6
expression E;
7
@@
8
-if (L) {
9
error_propagate(E, L);
10
-}