about summary refs log tree commit diff
path: root/elf/dl-addr.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/dl-addr.c')
-rw-r--r--elf/dl-addr.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/elf/dl-addr.c b/elf/dl-addr.c
index 5d3719adb2..720b24d04b 100644
--- a/elf/dl-addr.c
+++ b/elf/dl-addr.c
@@ -91,7 +91,8 @@ _dl_addr (const void *address, Dl_info *info,
 		    {
 		      /* The hash table never references local symbols
 			 so we can omit that test here.  */
-		      if (symtab[symndx].st_shndx != SHN_UNDEF
+		      if ((symtab[symndx].st_shndx != SHN_UNDEF
+			   || symtab[symndx].st_value != 0)
 #ifdef USE_TLS
 			  && ELFW(ST_TYPE) (symtab[symndx].st_info) != STT_TLS
 #endif
@@ -125,7 +126,8 @@ _dl_addr (const void *address, Dl_info *info,
 #ifdef USE_TLS
 		&& ELFW(ST_TYPE) (symtab->st_info) != STT_TLS
 #endif
-		&& symtab->st_shndx != SHN_UNDEF
+		&& (symtab->st_shndx != SHN_UNDEF
+		    || symtab->st_value != 0)
 		&& DL_ADDR_SYM_MATCH (match, symtab, matchsym, addr)
 		&& symtab->st_name < strtabsize)
 	      matchsym = (ElfW(Sym) *) symtab;