From: Ulrich Drepper Date: Wed, 12 Feb 2003 09:42:48 +0000 (+0000) Subject: (ELF_MACHINE_RUNTIME_TRAMPOLINE): Fix masking of version index. X-Git-Tag: glibc-2.16-ports-before-merge~1441 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c157224cb867c98f4f171e0da588c23fe588512d;p=thirdparty%2Fglibc.git (ELF_MACHINE_RUNTIME_TRAMPOLINE): Fix masking of version index. --- diff --git a/sysdeps/mips/dl-machine.h b/sysdeps/mips/dl-machine.h index 08e5a6e562c..c4864c21d23 100644 --- a/sysdeps/mips/dl-machine.h +++ b/sysdeps/mips/dl-machine.h @@ -1,5 +1,5 @@ /* 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. Contributed by Kazumoto Kojima . @@ -293,7 +293,7 @@ __dl_runtime_resolve (ElfW(Word) sym_index, \ { \ const ElfW(Half) *vernum = \ (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]; \ \ if (version->hash != 0) \