summaryrefslogtreecommitdiffstats
path: root/coccinelle/take-ptr.cocci
blob: 3251d3ed65a26dcb0309616669ab7a531fe21eab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);