]> Git Repo - qemu.git/blob - scripts/coccinelle/error_propagate_null.cocci
Merge remote-tracking branch 'remotes/kraxel/tags/usb-20170717-pull-request' into...
[qemu.git] / scripts / coccinelle / error_propagate_null.cocci
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 -}
This page took 0.024359 seconds and 4 git commands to generate.