coccinelle: add new correct case to error treatment

pull/190/head
Eric Leblond 14 years ago
parent a1d1abfc05
commit 6e5caf6838

@ -28,6 +28,8 @@ x@p1 = func(...)
(
if (unlikely(x == NULL)) S1
|
if (likely(x != NULL)) S1
|
if (x == NULL) S1
|
if (x != NULL) S1 else S2

Loading…
Cancel
Save