From 622e09b4408d85ecf1a3d5c72041ef49f841e733 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 14 Sep 2007 14:53:00 +0000 Subject: [PATCH] 2007-09-14 Joel Sherrill PR 1261/cpukit * posix/src/semaphorecreatesupp.c: Initialize all fields during semaphore creation. --- cpukit/ChangeLog | 6 ++++++ cpukit/posix/src/semaphorecreatesupp.c | 6 ++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index c660902d31..c51425bd9a 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,9 @@ +2007-09-14 Joel Sherrill + + PR 1261/cpukit + * posix/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 64d8f435b0..77c6924fe5 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;