mirror of git://sourceware.org/git/glibc.git
* elf/dl-open.c (dl_open_worker): Fix typo.
This commit is contained in:
parent
56137dbc2d
commit
8622e9505d
|
@ -1,3 +1,7 @@
|
||||||
|
2005-03-20 Alfred M. Szmidt <ams@gnu.org>
|
||||||
|
|
||||||
|
* elf/dl-open.c (dl_open_worker): Fix typo.
|
||||||
|
|
||||||
2005-03-20 Ulrich Drepper <drepper@redhat.com>
|
2005-03-20 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* malloc/malloc.c (public_cALLOc): We cannot skip the memory
|
* malloc/malloc.c (public_cALLOc): We cannot skip the memory
|
||||||
|
|
|
@ -462,8 +462,10 @@ dl_open_worker (void *a)
|
||||||
/* We have to bump the generation counter. */
|
/* We have to bump the generation counter. */
|
||||||
any_tls = true;
|
any_tls = true;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if USE_TLS
|
||||||
/* Bump the generation number if necessary. */
|
/* Bump the generation number if necessary. */
|
||||||
if (any_tls && __builtin_expect (++GL(dl_tls_generation) == 0, 0))
|
if (any_tls && __builtin_expect (++GL(dl_tls_generation) == 0, 0))
|
||||||
_dl_fatal_printf (N_("\
|
_dl_fatal_printf (N_("\
|
||||||
|
|
Loading…
Reference in New Issue