Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOSamiQemu
QOSamiQemu
/
scripts
/
coccinelle
/
error_propagate_null.cocci
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
cocci
10 lines
180 Bytes
Copy permalink
Copy
Raw
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
-}