Author: kib
Date: Thu Sep 22 08:39:20 2011
New Revision: 225726
URL: http://svn.freebsd.org/changeset/base/225726

Log:
  MFC r225582:
  Use the proper dynamic tls block to calculate the tls variable address
  in case tls data generation was updated.
  
  PR:   misc/160721

Modified:
  stable/8/libexec/rtld-elf/rtld.c
Directory Properties:
  stable/8/libexec/rtld-elf/   (props changed)

Modified: stable/8/libexec/rtld-elf/rtld.c
==============================================================================
--- stable/8/libexec/rtld-elf/rtld.c    Thu Sep 22 08:24:33 2011        
(r225725)
+++ stable/8/libexec/rtld-elf/rtld.c    Thu Sep 22 08:39:20 2011        
(r225726)
@@ -3126,7 +3126,7 @@ tls_get_addr_common(Elf_Addr** dtvp, int
        newdtv[1] = tls_max_index;
        free(dtv);
        wlock_release(rtld_bind_lock, lockstate);
-       *dtvp = newdtv;
+       dtv = *dtvp = newdtv;
     }
 
     /* Dynamically allocate module TLS if necessary */
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to