VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
author: Linus Torvalds <torvalds@linux-foundation.org> 2018-11-30 12:13:15 -0800 committer: Linus Torvalds <torvalds@linux-foundation.org> 2018-11-30 12:13:15 -0800 commit: b1286ed7158e9b62787508066283ab0b8850b518 parent: 1ec63573b2db363848abb313cc75eb29e9abc1b3
Commit Summary:
test_hexdump: use memcpy instead of strncpy
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/lib/test_hexdump.c b/lib/test_hexdump.c
index 626f580b4ff7..5144899d3c6b 100644
--- a/lib/test_hexdump.c
+++ b/lib/test_hexdump.c
@@ -99,7 +99,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++ = ' ';