summaryrefslogtreecommitdiff
path: root/coccinelle/equals-null.cocci
diff options
context:
space:
mode:
Diffstat (limited to 'coccinelle/equals-null.cocci')
-rw-r--r--coccinelle/equals-null.cocci14
1 files changed, 14 insertions, 0 deletions
diff --git a/coccinelle/equals-null.cocci b/coccinelle/equals-null.cocci
new file mode 100644
index 0000000000..957d828a83
--- /dev/null
+++ b/coccinelle/equals-null.cocci
@@ -0,0 +1,14 @@
+@@
+expression e;
+statement s;
+@@
+- if (e == NULL)
++ if (!e)
+s
+@@
+expression e;
+statement s;
+@@
+- if (e != NULL)
++ if (e)
+s