]> git.ipfire.org Git - thirdparty/systemd.git/blame - coccinelle/take-ptr.cocci
fs-util: no need for fchmod_and_chown() to access /proc/self/fd directly
[thirdparty/systemd.git] / coccinelle / take-ptr.cocci
CommitLineData
ae2a15bc
LP
1@@
2local idexpression p;
3expression q;
4@@
5- p = q;
6- q = NULL;
7- return p;
8+ return TAKE_PTR(q);
9@@
10expression p, q;
11@@
12- p = q;
13- q = NULL;
14+ p = TAKE_PTR(q);