mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
* sysdeps/unix/sysv/linux/ia64/dl-static.c (_dl_static_init):
Initialize REF before passing it to _dl_lookup_symbol.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2003-12-22 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/ia64/dl-static.c (_dl_static_init):
|
||||||
|
Initialize REF before passing it to _dl_lookup_symbol.
|
||||||
|
|
||||||
2003-12-21 Roland McGrath <roland@frob.com>
|
2003-12-21 Roland McGrath <roland@frob.com>
|
||||||
|
|
||||||
* sysdeps/mach/hurd/dl-sysdep.c (_exit): Define with attribute_hidden.
|
* sysdeps/mach/hurd/dl-sysdep.c (_exit): Define with attribute_hidden.
|
||||||
|
@ -49,7 +49,7 @@ static void *variables[] =
|
|||||||
void
|
void
|
||||||
_dl_static_init (struct link_map *map)
|
_dl_static_init (struct link_map *map)
|
||||||
{
|
{
|
||||||
const ElfW(Sym) *ref;
|
const ElfW(Sym) *ref = NULL;
|
||||||
lookup_t loadbase;
|
lookup_t loadbase;
|
||||||
void (*f) (void *[]);
|
void (*f) (void *[]);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user