mirror of
https://github.com/systemd/systemd.git
synced 2024-11-27 12:13:33 +08:00
12 lines
162 B
Plaintext
12 lines
162 B
Plaintext
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
||
|
@@
|
||
|
expression x;
|
||
|
@@
|
||
|
- strdupa(x)
|
||
|
+ strdupa_safe(x)
|
||
|
@@
|
||
|
expression x, n;
|
||
|
@@
|
||
|
- strndupa(x, n)
|
||
|
+ strndupa_safe(x, n)
|