diff options
Diffstat (limited to 'third_party/git/contrib/coccinelle/free.cocci')
-rw-r--r-- | third_party/git/contrib/coccinelle/free.cocci | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/third_party/git/contrib/coccinelle/free.cocci b/third_party/git/contrib/coccinelle/free.cocci deleted file mode 100644 index 4490069df965..000000000000 --- a/third_party/git/contrib/coccinelle/free.cocci +++ /dev/null @@ -1,18 +0,0 @@ -@@ -expression E; -@@ -- if (E) - free(E); - -@@ -expression E; -@@ -- if (!E) - free(E); - -@@ -expression E; -@@ -- free(E); -+ FREE_AND_NULL(E); -- E = NULL; |