* [PATCH] arch: mips: kernel: using strlcpy() instead of strncpy()
@ 2013-05-26 8:06 Chen Gang
0 siblings, 0 replies; only message in thread
From: Chen Gang @ 2013-05-26 8:06 UTC (permalink / raw)
To: ralf, blogic, david.daney
Cc: linux-mips, Linux-Arch, linux-kernel@vger.kernel.org
For NUL terminated string, need always be sure of ended by zero.
Or the next pr_info() will cause issue.
Signed-off-by: Chen Gang <gang.chen@asianux.com>
---
arch/mips/kernel/prom.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/mips/kernel/prom.c b/arch/mips/kernel/prom.c
index 5712bb5..7e95404 100644
--- a/arch/mips/kernel/prom.c
+++ b/arch/mips/kernel/prom.c
@@ -30,7 +30,7 @@ __init void mips_set_machine_name(const char *name)
if (name == NULL)
return;
- strncpy(mips_machine_name, name, sizeof(mips_machine_name));
+ strlcpy(mips_machine_name, name, sizeof(mips_machine_name));
pr_info("MIPS: machine is %s\n", mips_get_machine_name());
}
--
1.7.7.6
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2013-05-26 8:07 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-26 8:06 [PATCH] arch: mips: kernel: using strlcpy() instead of strncpy() Chen Gang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox