mirror of
https://git.proxmox.com/git/systemd
synced 2025-08-16 04:34:30 +00:00
16 lines
209 B
Plaintext
16 lines
209 B
Plaintext
/* 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);
|