diff options
author | Lennart Poettering <lennart@poettering.net> | 2022-02-16 10:52:51 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2022-02-16 17:26:26 +0100 |
commit | 96ca229517c65c7f47c02e21e9778ac189a829c1 (patch) | |
tree | 7af90e70603853f857135cab26041d71033934fb /coccinelle/mempcpy.cocci | |
parent | timesync: add missing setting in template (diff) | |
download | systemd-96ca229517c65c7f47c02e21e9778ac189a829c1.tar.xz systemd-96ca229517c65c7f47c02e21e9778ac189a829c1.zip |
coccinelle: automatically switch some uses of memcpy() → mempcpy()
Inspired by #22520, let's add a coccinelle script that converts this
automatically.
Diffstat (limited to 'coccinelle/mempcpy.cocci')
-rw-r--r-- | coccinelle/mempcpy.cocci | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/coccinelle/mempcpy.cocci b/coccinelle/mempcpy.cocci new file mode 100644 index 0000000000..efb657ae79 --- /dev/null +++ b/coccinelle/mempcpy.cocci @@ -0,0 +1,13 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ +@@ +expression x, y, z; +@@ +- memcpy(x, y, z); +- x += z; ++ x = mempcpy(x, y, z); +@@ +expression x, y, z; +@@ +- memcpy_safe(x, y, z); +- x += z; ++ x = mempcpy_safe(x, y, z); |