mirror of
https://git.proxmox.com/git/systemd
synced 2025-08-14 10:40:02 +00:00
17 lines
230 B
Plaintext
17 lines
230 B
Plaintext
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
@@
|
|
expression p, q;
|
|
@@
|
|
- free(p);
|
|
- p = q;
|
|
- q = NULL;
|
|
- return 0;
|
|
+ return free_and_replace(p, q);
|
|
@@
|
|
expression p, q;
|
|
@@
|
|
- free(p);
|
|
- p = q;
|
|
- q = NULL;
|
|
+ free_and_replace(p, q);
|