1
0
Fork 0
systemd/coccinelle/take-fd.cocci
Daniel Baumann ce097cb8f4
Adding upstream version 257.7.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 18:07:44 +02:00

22 lines
480 B
Text

/* 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);