diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-11-30 12:13:15 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-02-20 10:13:14 +0100 |
commit | 5ef0ebd78509388fbff3fb326744384d6f27e3ae (patch) | |
tree | f328de54021891ca4c7d0c017e1984f721c78bf4 /lib | |
parent | 93af75d0aba032fd8407be632c8f2f8657829a10 (diff) | |
download | linux-stable-5ef0ebd78509388fbff3fb326744384d6f27e3ae.tar.gz linux-stable-5ef0ebd78509388fbff3fb326744384d6f27e3ae.tar.bz2 linux-stable-5ef0ebd78509388fbff3fb326744384d6f27e3ae.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>
Diffstat (limited to 'lib')
-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 5241df36eedf..dadcabe50988 100644 --- a/lib/test-hexdump.c +++ b/lib/test-hexdump.c @@ -81,7 +81,7 @@ static void __init test_hexdump(size_t len, int rowsize, int groupsize, const char *q = *result++; size_t amount = strlen(q); - strncpy(p, q, amount); + memcpy(p, q, amount); p += amount + 1; } if (i) |