From cb603903a2db32ac498afc959c6117d2967ec706 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 14 Sep 2007 14:52:30 +0000 Subject: 2007-09-14 Joel Sherrill PR 1261/cpukit * src/semaphorecreatesupp.c: Initialize all fields during semaphore creation. --- cpukit/posix/ChangeLog | 6 ++++++ cpukit/posix/src/semaphorecreatesupp.c | 6 ++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/cpukit/posix/ChangeLog b/cpukit/posix/ChangeLog index d139fc86ae..1d0567ea81 100644 --- a/cpukit/posix/ChangeLog +++ b/cpukit/posix/ChangeLog @@ -1,3 +1,9 @@ +2007-09-14 Joel Sherrill + + PR 1261/cpukit + * src/semaphorecreatesupp.c: Initialize all fields during + semaphore creation. + 2007-09-14 Joel Sherrill PR 1260/cpukit diff --git a/cpukit/posix/src/semaphorecreatesupp.c b/cpukit/posix/src/semaphorecreatesupp.c index 86b1179660..32828bb111 100644 --- a/cpukit/posix/src/semaphorecreatesupp.c +++ b/cpukit/posix/src/semaphorecreatesupp.c @@ -78,9 +78,11 @@ int _POSIX_Semaphore_Create_support( the_semaphore->named = TRUE; the_semaphore->open_count = 1; the_semaphore->linked = TRUE; - } - else + } else { the_semaphore->named = FALSE; + the_semaphore->open_count = 0; + the_semaphore->linked = FALSE; + } the_sem_attr = &the_semaphore->Semaphore.Attributes; -- cgit v1.2.3