Module Name:    src
Committed By:   kamil
Date:           Sun Nov 20 21:49:24 UTC 2016

Modified Files:
        src/lib/libpthread_dbg: pthread_dbg.c

Log Message:
Always set trailing '\0' in td_thr_getname() to compose valid ASCIIZ string

This fixes threads5 in tests/lib/libpthread_dbg

Sponsored by <The NetBSD Foundation>


To generate a diff of this commit:
cvs rdiff -u -r1.47 -r1.48 src/lib/libpthread_dbg/pthread_dbg.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libpthread_dbg/pthread_dbg.c
diff -u src/lib/libpthread_dbg/pthread_dbg.c:1.47 src/lib/libpthread_dbg/pthread_dbg.c:1.48
--- src/lib/libpthread_dbg/pthread_dbg.c:1.47	Sun Nov 20 03:53:47 2016
+++ src/lib/libpthread_dbg/pthread_dbg.c	Sun Nov 20 21:49:24 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: pthread_dbg.c,v 1.47 2016/11/20 03:53:47 kamil Exp $	*/
+/*	$NetBSD: pthread_dbg.c,v 1.48 2016/11/20 21:49:24 kamil Exp $	*/
 
 /*-
  * Copyright (c) 2002 Wasabi Systems, Inc.
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: pthread_dbg.c,v 1.47 2016/11/20 03:53:47 kamil Exp $");
+__RCSID("$NetBSD: pthread_dbg.c,v 1.48 2016/11/20 21:49:24 kamil Exp $");
 
 #define __EXPOSE_STACK 1
 
@@ -280,6 +280,9 @@ td_thr_getname(td_thread_t *thread, char
 	    name, (size_t)MIN(PTHREAD_MAX_NAMELEN_NP, len))) != 0)
 		return val;
 
+	if (len < PTHREAD_MAX_NAMELEN_NP)
+		name[len - 1] = '\0';
+
 	return 0;
 }
 

Reply via email to