aboutsummaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorDavid Xu <davidxu@FreeBSD.org>2006-03-28 06:14:22 +0000
committerDavid Xu <davidxu@FreeBSD.org>2006-03-28 06:14:22 +0000
commitc771787169fd4c7212211a51d13e3506ca2ffc39 (patch)
tree2dc1d01603bcb398e2bb264a0ceed5e7eae38152 /libexec
parentc0d2338cdd226c89b5efde952c0e82d8cb9960d8 (diff)
Notes
Diffstat (limited to 'libexec')
-rw-r--r--libexec/rtld-elf/rtld.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/rtld-elf/rtld.c b/libexec/rtld-elf/rtld.c
index 9824c3e91d5c1..670c32590f771 100644
--- a/libexec/rtld-elf/rtld.c
+++ b/libexec/rtld-elf/rtld.c
@@ -2804,7 +2804,7 @@ allocate_tls(Obj_Entry *objs, void *oldtls, size_t tcbsize, size_t tcbalign)
size = round(tls_static_space, tcbalign);
assert(tcbsize >= 2*sizeof(Elf_Addr));
- tls = malloc(size + tcbsize);
+ tls = calloc(1, size + tcbsize);
dtv = calloc(1, (tls_max_index + 2) * sizeof(Elf_Addr));
segbase = (Elf_Addr)(tls + size);