mirror of git://sourceware.org/git/glibc.git
Update.
2003-04-26 Andreas Schwab <schwab@suse.de> * elf/dl-close.c (remove_slotinfo): Fix missing parens.
This commit is contained in:
parent
a52bb6001a
commit
06a04e0924
|
@ -1,3 +1,7 @@
|
|||
2003-04-26 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* elf/dl-close.c (remove_slotinfo): Fix missing parens.
|
||||
|
||||
2003-04-25 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* nscd/cache.c (cache_search): Keep track of how many chain links
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue