1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00
* sysdeps/unix/sysv/linux/ia64/dl-static.c (_dl_static_init): Call
	_dl_lookup_symbol_x not _dl_lookup_symbol.
This commit is contained in:
Ulrich Drepper
2004-03-07 22:22:04 +00:00
parent ef690addb5
commit 001836c8c1
7 changed files with 20 additions and 8 deletions

View File

@ -55,8 +55,8 @@ _dl_static_init (struct link_map *map)
__libc_lock_lock_recursive (_dl_static_lock);
loadbase = _dl_lookup_symbol ("_dl_var_init", map, &ref,
map->l_local_scope, 0, 1);
loadbase = _dl_lookup_symbol_x ("_dl_var_init", map, &ref,
map->l_local_scope, NULL, 0, 1, NULL);
if (ref != NULL)
{
f = (void (*) (void *[])) DL_SYMBOL_ADDRESS (loadbase, ref);