summaryrefslogtreecommitdiffstats
path: root/linker/linker.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-02-07 18:39:34 -0800
committerElliott Hughes <enh@google.com>2013-02-08 11:16:13 -0800
commitd3920b3a996b358e48232f417aa0a1e44a60f155 (patch)
treeb0520d0d300dbca1e6e54a9a7c26e6d2cd81ed08 /linker/linker.cpp
parentf6afd3b670e23f56bf341d12136416aee17ea249 (diff)
downloadbionic-d3920b3a996b358e48232f417aa0a1e44a60f155.zip
bionic-d3920b3a996b358e48232f417aa0a1e44a60f155.tar.gz
bionic-d3920b3a996b358e48232f417aa0a1e44a60f155.tar.bz2
Switch to using AT_RANDOM for the stack guards.
Bug: 7959813 Change-Id: I8db4b8912ba649bfe668c6f22aa44690ddd401a2
Diffstat (limited to 'linker/linker.cpp')
-rwxr-xr-xlinker/linker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linker/linker.cpp b/linker/linker.cpp
index 77c29a1..d36b1f6 100755
--- a/linker/linker.cpp
+++ b/linker/linker.cpp
@@ -1781,7 +1781,7 @@ static unsigned __linker_init_post_relocation(KernelArgumentBlock& args, unsigne
* to point to a different location to ensure that no other
* shared library constructor can access it.
*/
- __libc_init_tls(&args);
+ __libc_init_tls(args);
#if TIMING
struct timeval t0, t1;