about summary refs log tree commit diff
path: root/third_party/git/contrib/coccinelle/free.cocci
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/contrib/coccinelle/free.cocci')
-rw-r--r--third_party/git/contrib/coccinelle/free.cocci18
1 files changed, 18 insertions, 0 deletions
diff --git a/third_party/git/contrib/coccinelle/free.cocci b/third_party/git/contrib/coccinelle/free.cocci
new file mode 100644
index 0000000000..4490069df9
--- /dev/null
+++ b/third_party/git/contrib/coccinelle/free.cocci
@@ -0,0 +1,18 @@
+@@
+expression E;
+@@
+- if (E)
+  free(E);
+
+@@
+expression E;
+@@
+- if (!E)
+  free(E);
+
+@@
+expression E;
+@@
+- free(E);
++ FREE_AND_NULL(E);
+- E = NULL;