From c5acd3d77e9fc3abef96a5ca6b745eb53789bbde Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 20 Feb 2003 10:18:12 +0000 Subject: Update. * pthread_create.c (deallocate_tsd): Reset found_nonzero at the beginning of the loop. Clear the entire first block of TSD. --- nptl/pthread_create.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'nptl/pthread_create.c') diff --git a/nptl/pthread_create.c b/nptl/pthread_create.c index 89152ffeb9..bac7455af8 100644 --- a/nptl/pthread_create.c +++ b/nptl/pthread_create.c @@ -124,6 +124,9 @@ deallocate_tsd (struct pthread *pd) size_t cnt; size_t idx; + /* So far no new nonzero data entry. */ + found_nonzero = false; + for (cnt = idx = 0; cnt < PTHREAD_KEY_1STLEVEL_SIZE; ++cnt) if (pd->specific[cnt] != NULL) { -- cgit v1.2.3