]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Add spatch to replace memcpy usage with memmove
authorOndřej Surý <ondrej@sury.org>
Fri, 12 Jul 2019 13:27:06 +0000 (15:27 +0200)
committerOndřej Surý <ondrej@sury.org>
Fri, 12 Jul 2019 13:27:06 +0000 (15:27 +0200)
cocci/memcpy.spatch [new file with mode: 0644]

diff --git a/cocci/memcpy.spatch b/cocci/memcpy.spatch
new file mode 100644 (file)
index 0000000..f5e50e7
--- /dev/null
@@ -0,0 +1,14 @@
+@has_string_h@
+@@
+
+#include <string.h>
+
+@depends on has_string_h@
+
+expression D;
+expression S;
+expression N;
+@@
+
+- memcpy(D, S, N);
++ memmove(D, S, N);