diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-11-30 12:13:15 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-12-08 13:03:35 +0100 |
commit | 337f2837c5b29c1587dd7efc4befc9f6f84a2746 (patch) | |
tree | 2d95a9f980e8d003e0b501f4d43b5a341dadceef | |
parent | 9f8d10971a2395359751487c517bf33e5d8f9e43 (diff) | |
download | linux-exynos-337f2837c5b29c1587dd7efc4befc9f6f84a2746.tar.gz linux-exynos-337f2837c5b29c1587dd7efc4befc9f6f84a2746.tar.bz2 linux-exynos-337f2837c5b29c1587dd7efc4befc9f6f84a2746.zip |
test_hexdump: use memcpy instead of strncpy
commit b1286ed7158e9b62787508066283ab0b8850b518 upstream.
New versions of gcc reasonably warn about the odd pattern of
strncpy(p, q, strlen(q));
which really doesn't make sense: the strncpy() ends up being just a slow
and odd way to write memcpy() in this case.
Apparently there was a patch for this floating around earlier, but it
got lost.
Acked-again-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | lib/test_hexdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/test_hexdump.c b/lib/test_hexdump.c index 3f415d8101f3..1c3c513add77 100644 --- a/lib/test_hexdump.c +++ b/lib/test_hexdump.c @@ -81,7 +81,7 @@ static void __init test_hexdump_prepare_test(size_t len, int rowsize, const char *q = *result++; size_t amount = strlen(q); - strncpy(p, q, amount); + memcpy(p, q, amount); p += amount; *p++ = ' '; |