mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-26 20:51:11 +00:00
(__dl_runtime_resolve): Pass ELF_RTYPE_CLASS_PLT, instead of R_MIPS_REL32, to
_dl_lookup_versioned_symbol () and _dl_lookup_symbol ().
This commit is contained in:
parent
5c6029e5c0
commit
560c476139
@ -301,14 +301,14 @@ __dl_runtime_resolve (ElfW(Word) sym_index, \
|
||||
{ \
|
||||
value = _dl_lookup_versioned_symbol(strtab + sym->st_name, l, \
|
||||
&sym, l->l_scope, version,\
|
||||
R_MIPS_REL32, 0); \
|
||||
ELF_RTYPE_CLASS_PLT, 0); \
|
||||
break; \
|
||||
} \
|
||||
/* Fall through. */ \
|
||||
} \
|
||||
case 0: \
|
||||
value = _dl_lookup_symbol (strtab + sym->st_name, l, &sym, \
|
||||
l->l_scope, R_MIPS_REL32, 0); \
|
||||
l->l_scope, ELF_RTYPE_CLASS_PLT, 0); \
|
||||
} \
|
||||
\
|
||||
/* Currently value contains the base load address of the object \
|
||||
|
Loading…
Reference in New Issue
Block a user