From b07d4453bf56b6c1df4032eaf46c15ef11a6e7d5 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 7 Dec 2009 17:27:07 +0000 Subject: 2009-12-07 Cindy Cicalese PR 1477/cpukit * score/src/objectsetname.c: Ensure destination is NULL terminated. String copy was not getting the NULL. --- cpukit/ChangeLog | 6 ++++++ cpukit/score/src/objectsetname.c | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index efdb855b81..30913d39e2 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,9 @@ +2009-12-07 Cindy Cicalese + + PR 1477/cpukit + * score/src/objectsetname.c: Ensure destination is NULL terminated. + String copy was not getting the NULL. + 2009-11-11 Jennifer Averett PR 1471/cpukit diff --git a/cpukit/score/src/objectsetname.c b/cpukit/score/src/objectsetname.c index 3dcfae7706..fdbff2eb36 100644 --- a/cpukit/score/src/objectsetname.c +++ b/cpukit/score/src/objectsetname.c @@ -1,5 +1,5 @@ /* - * COPYRIGHT (c) 1989-2008. + * COPYRIGHT (c) 1989-2009. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -53,6 +53,7 @@ bool _Objects_Set_name( } strncpy( d, name, length ); + d[ length ] = '\0'; the_object->name.name_p = d; } else { the_object->name.name_u32 = _Objects_Build_name( -- cgit v1.2.3