summaryrefslogtreecommitdiff
path: root/coccinelle
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2022-02-16 10:52:51 +0100
committerLennart Poettering <lennart@poettering.net>2022-02-16 17:26:26 +0100
commit96ca229517c65c7f47c02e21e9778ac189a829c1 (patch)
tree7af90e70603853f857135cab26041d71033934fb /coccinelle
parentbde335f21fc547163647513f4658d9a3fde1b8f9 (diff)
downloadsystemd-96ca229517c65c7f47c02e21e9778ac189a829c1.tar.gz
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')
-rw-r--r--coccinelle/mempcpy.cocci13
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);