public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] arch: tile: kernel: setup.c:  Cleaning up missing null-terminate in conjunction with strncpy
@ 2014-07-26 14:04 Rickard Strandqvist
  2014-08-01 20:12 ` Chris Metcalf
  2014-08-05 20:12 ` Chris Metcalf
  0 siblings, 2 replies; 4+ messages in thread
From: Rickard Strandqvist @ 2014-07-26 14:04 UTC (permalink / raw)
  To: Chris Metcalf, Wang Sheng-Hui
  Cc: Rickard Strandqvist, Daniel Walter, linux-kernel

Replacing strncpy with strlcpy to avoid strings that lacks null terminate.

Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se>
---
 arch/tile/kernel/setup.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/tile/kernel/setup.c b/arch/tile/kernel/setup.c
index 112abab..1af7d19 100644
--- a/arch/tile/kernel/setup.c
+++ b/arch/tile/kernel/setup.c
@@ -1087,7 +1087,7 @@ static int __init setup_initramfs_file(char *str)
 {
 	if (str == NULL)
 		return -EINVAL;
-	strncpy(initramfs_file, str, sizeof(initramfs_file) - 1);
+	strlcpy(initramfs_file, str, sizeof(initramfs_file));
 	set_initramfs_file = 1;
 
 	return 0;
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-08-05 20:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-26 14:04 [PATCH] arch: tile: kernel: setup.c: Cleaning up missing null-terminate in conjunction with strncpy Rickard Strandqvist
2014-08-01 20:12 ` Chris Metcalf
2014-08-05 20:12 ` Chris Metcalf
2014-08-05 20:40   ` Rickard Strandqvist

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox