Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/games/hack games/hack: Fix -Wstringop-truncation warning.



details:   https://anonhg.NetBSD.org/src/rev/3a952cd63985
branches:  trunk
changeset: 744603:3a952cd63985
user:      fox <fox%NetBSD.org@localhost>
date:      Fri Feb 07 20:34:18 2020 +0000

description:
games/hack:  Fix -Wstringop-truncation warning.

Replace strncpy(3) with strlcpy(3).

Error was reported when build.sh was run with MKLIBCSANITIZER=yes flag.

Reviewed by: kamil@

diffstat:

 games/hack/hack.end.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r ecade8fa1958 -r 3a952cd63985 games/hack/hack.end.c
--- a/games/hack/hack.end.c     Fri Feb 07 20:17:48 2020 +0000
+++ b/games/hack/hack.end.c     Fri Feb 07 20:34:18 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: hack.end.c,v 1.17 2011/08/06 20:42:43 dholland Exp $   */
+/*     $NetBSD: hack.end.c,v 1.18 2020/02/07 20:34:18 fox Exp $        */
 
 /*
  * Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica,
@@ -63,7 +63,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: hack.end.c,v 1.17 2011/08/06 20:42:43 dholland Exp $");
+__RCSID("$NetBSD: hack.end.c,v 1.18 2020/02/07 20:34:18 fox Exp $");
 #endif                         /* not lint */
 
 #include <signal.h>
@@ -362,7 +362,7 @@
        t0->plchar = pl_character[0];
        t0->sex = (flags.female ? 'F' : 'M');
        t0->uid = uid;
-       (void) strncpy(t0->name, plname, NAMSZ);
+       (void) strlcpy(t0->name, plname, NAMSZ);
        (t0->name)[NAMSZ] = 0;
        (void) strncpy(t0->death, killer, DTHSZ);
        (t0->death)[DTHSZ] = 0;



Home | Main Index | Thread Index | Old Index