1
0
mirror of https://github.com/systemd/systemd synced 2024-07-01 07:34:28 +00:00
systemd/coccinelle/take-fd.cocci
2023-07-09 14:07:48 +09:00

23 lines
480 B
Plaintext

/* SPDX-License-Identifier: LGPL-2.1-or-later */
@@
local idexpression p;
expression q;
@@
- p = q;
- q = -EBADF;
- return p;
+ return TAKE_FD(q);
/* The ideal solution would use 'local idexpression' to avoid matching errno,
* which is a global variable. However, 'idexpression' nor 'identifier'
* would match, for example, "x->fd", which is considered 'expression' in
* the SmPL grammar
*/
@@
expression p != errno;
expression q;
@@
- p = q;
- q = -EBADF;
+ p = TAKE_FD(q);