mirror of
https://github.com/systemd/systemd
synced 2024-11-05 18:25:39 +00:00
906682a1de
Follow-up for 254d1313ae
22 lines
480 B
Text
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);
|