summaryrefslogtreecommitdiffstats
path: root/coccinelle/take-ptr.cocci
diff options
context:
space:
mode:
Diffstat (limited to 'coccinelle/take-ptr.cocci')
-rw-r--r--coccinelle/take-ptr.cocci15
1 files changed, 15 insertions, 0 deletions
diff --git a/coccinelle/take-ptr.cocci b/coccinelle/take-ptr.cocci
new file mode 100644
index 0000000..3251d3e
--- /dev/null
+++ b/coccinelle/take-ptr.cocci
@@ -0,0 +1,15 @@
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+@@
+local idexpression p;
+expression q;
+@@
+- p = q;
+- q = NULL;
+- return p;
++ return TAKE_PTR(q);
+@@
+expression p, q;
+@@
+- p = q;
+- q = NULL;
++ p = TAKE_PTR(q);