Update.
2003-02-12 Ulrich Drepper <drepper@redhat.com> * sysdeps/mips/dl-machine.h (ELF_MACHINE_RUNTIME_TRAMPOLINE): Fix masking of version index. Patch by Lance Larsh <Lance.Larsh@oracle.com>.
This commit is contained in:
parent
969c9da7f7
commit
7437cbd112
@ -1,3 +1,9 @@
|
|||||||
|
2003-02-12 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/mips/dl-machine.h (ELF_MACHINE_RUNTIME_TRAMPOLINE): Fix
|
||||||
|
masking of version index.
|
||||||
|
Patch by Lance Larsh <Lance.Larsh@oracle.com>.
|
||||||
|
|
||||||
2003-02-11 Ulrich Drepper <drepper@redhat.com>
|
2003-02-11 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* nss/nss_files/files-hosts.c (HOST_DB_LOOKUP): Compute alignment
|
* nss/nss_files/files-hosts.c (HOST_DB_LOOKUP): Compute alignment
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Machine-dependent ELF dynamic relocation inline functions. MIPS version.
|
/* Machine-dependent ELF dynamic relocation inline functions. MIPS version.
|
||||||
Copyright (C) 1996-2001, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1996-2001, 2002, 2003 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Kazumoto Kojima <kkojima@info.kanagawa-u.ac.jp>.
|
Contributed by Kazumoto Kojima <kkojima@info.kanagawa-u.ac.jp>.
|
||||||
|
|
||||||
@ -293,7 +293,7 @@ __dl_runtime_resolve (ElfW(Word) sym_index, \
|
|||||||
{ \
|
{ \
|
||||||
const ElfW(Half) *vernum = \
|
const ElfW(Half) *vernum = \
|
||||||
(const void *) D_PTR (l, l_info[VERSYMIDX (DT_VERSYM)]); \
|
(const void *) D_PTR (l, l_info[VERSYMIDX (DT_VERSYM)]); \
|
||||||
ElfW(Half) ndx = vernum[sym_index & 0x7fff]; \
|
ElfW(Half) ndx = vernum[sym_index] & 0x7fff; \
|
||||||
const struct r_found_version *version = &l->l_versions[ndx]; \
|
const struct r_found_version *version = &l->l_versions[ndx]; \
|
||||||
\
|
\
|
||||||
if (version->hash != 0) \
|
if (version->hash != 0) \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user