diff options
Diffstat (limited to 'cocci/memcpy.spatch')
-rw-r--r-- | cocci/memcpy.spatch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cocci/memcpy.spatch b/cocci/memcpy.spatch new file mode 100644 index 0000000..f5e50e7 --- /dev/null +++ b/cocci/memcpy.spatch @@ -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); |