From 7bc513cf188fe50e21ad88439f294100ffa20f72 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Fri, 7 Aug 2009 10:39:55 -0700 Subject: Fix expanding STB_GNU_UNIQUE hash table. An invalid symbol name pointer was entered into the hash table while enlarging it. --- elf/dl-lookup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'elf') diff --git a/elf/dl-lookup.c b/elf/dl-lookup.c index 56724c9b4d..c1a1366d6f 100644 --- a/elf/dl-lookup.c +++ b/elf/dl-lookup.c @@ -321,7 +321,7 @@ do_lookup_x (const char *undef_name, uint_fast32_t new_hash, if (table[idx].name == NULL) { table[idx].hashval = hash; - table[idx].name = strtab + sym->st_name; + table[idx].name = name; if ((type_class & ELF_RTYPE_CLASS_COPY) != 0) { table[idx].sym = ref; -- cgit v1.2.3