about summary refs log tree commit diff
path: root/elf/dl-lookup.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@gmail.com>2011-10-29 12:40:55 -0400
committerUlrich Drepper <drepper@gmail.com>2011-10-29 12:40:55 -0400
commit1bc3307181a2213a4d7253bced376c3de021605e (patch)
tree21dc0303b6296a817a7f75b3c2ef2ce634655012 /elf/dl-lookup.c
parent1760874da6e4a6934751ea12cf2c06eae936b53c (diff)
downloadglibc-1bc3307181a2213a4d7253bced376c3de021605e.tar.gz
glibc-1bc3307181a2213a4d7253bced376c3de021605e.tar.xz
glibc-1bc3307181a2213a4d7253bced376c3de021605e.zip
Avoid warning in dl-lookup.c
Diffstat (limited to 'elf/dl-lookup.c')
-rw-r--r--elf/dl-lookup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/dl-lookup.c b/elf/dl-lookup.c
index affb53f30e..e655d14dd4 100644
--- a/elf/dl-lookup.c
+++ b/elf/dl-lookup.c
@@ -860,7 +860,6 @@ internal_function
 _dl_setup_hash (struct link_map *map)
 {
   Elf_Symndx *hash;
-  Elf_Symndx nchain;
 
   if (__builtin_expect (map->l_info[DT_ADDRTAGIDX (DT_GNU_HASH) + DT_NUM
 				    + DT_THISPROCNUM + DT_VERSIONTAGNUM
@@ -892,7 +891,8 @@ _dl_setup_hash (struct link_map *map)
   hash = (void *) D_PTR (map, l_info[DT_HASH]);
 
   map->l_nbuckets = *hash++;
-  nchain = *hash++;
+  /* Skip nchain.  */
+  hash++;
   map->l_buckets = hash;
   hash += map->l_nbuckets;
   map->l_chain = hash;