From: Ulrich Drepper Date: Sat, 26 Apr 2003 20:14:27 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_3_3~822 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=06a04e0924caa0ab4ac719e31c86f53501fc297d;p=thirdparty%2Fglibc.git Update. 2003-04-26 Andreas Schwab * elf/dl-close.c (remove_slotinfo): Fix missing parens. --- diff --git a/ChangeLog b/ChangeLog index 329ea7d097a..359f7ed5d43 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-04-26 Andreas Schwab + + * elf/dl-close.c (remove_slotinfo): Fix missing parens. + 2003-04-25 Ulrich Drepper * nscd/cache.c (cache_search): Keep track of how many chain links diff --git a/elf/dl-close.c b/elf/dl-close.c index 1e6dd1255a7..78b143f8ecf 100644 --- a/elf/dl-close.c +++ b/elf/dl-close.c @@ -80,7 +80,7 @@ remove_slotinfo (size_t idx, struct dtv_slotinfo_list *listp, size_t disp, return true; } - while (idx - disp > disp == 0 ? 1 + GL(dl_tls_static_nelem) : 0) + while (idx - disp > (disp == 0 ? 1 + GL(dl_tls_static_nelem) : 0)) { --idx;