OSDN Git Service

ldso: fixup missed variable rename ( tls_tpnt -> tpntp )
authorAustin Foxley <austinf@cetoncorp.com>
Fri, 16 Oct 2009 18:50:51 +0000 (11:50 -0700)
committerAustin Foxley <austinf@cetoncorp.com>
Fri, 16 Oct 2009 18:52:32 +0000 (11:52 -0700)
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
ldso/ldso/dl-hash.c

index 5f90a54..6d54f37 100644 (file)
@@ -337,8 +337,8 @@ char *_dl_lookup_hash(const char *name, struct dyn_elf *rpnt, struct elf_resolve
                /* At this point we have found the requested symbol, do binding */
 #if USE_TLS
                if (ELF_ST_TYPE(sym->st_info) == STT_TLS) {
-                       _dl_assert(tls_tpnt != NULL);
-                       *tls_tpnt = tpnt;
+                       _dl_assert(tpntp != NULL);
+                       *tpntp = tpnt;
 
                        return (char *)sym->st_value;
                }