Sign in
qemu
/
qemu
/
9d8d5a5b9078a16b4c0862fe54248c5cc8435648
/
.
/
scripts
/
coccinelle
/
error_propagate_null.cocci
blob: c23638007ab3aa168063c35ead29f09e3f2f7bd6 [
file
] [
log
] [
blame
]
// error_propagate() already ignores local_err==NULL, so there's
// no need to check it before calling.
@@
identifier L
;
expression E
;
@@
-
if
(
L
)
{
error_propagate
(
E
,
L
);
-}