diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-01-19 10:41:40 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-19 10:41:40 +0000 |
commit | ab328b6481c7223182fe6993644295d84138cbc0 (patch) | |
tree | bf1bca32ed028022010256623f426cf897600345 | |
parent | e96b985e27df3779617b6747db05d4b0526d84ba (diff) |
would help if i used the right variable name ...
-rw-r--r-- | ldso/ldso/ldso.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/ldso/ldso.c b/ldso/ldso/ldso.c index 2a8c2c560..8b4b20822 100644 --- a/ldso/ldso/ldso.c +++ b/ldso/ldso/ldso.c @@ -139,7 +139,7 @@ void _dl_get_ready_to_run(struct elf_resolve *tpnt, unsigned long load_addr, * setup so we can use _dl_dprintf() to print debug noise * instead of the SEND_STDERR macros used in dl-startup.c */ - _dl_memset(&app_tpnt_rel, 0x00, sizeof(app_tpnt_rel)); + _dl_memset(app_tpnt, 0x00, sizeof(*app_tpnt)); /* Store the page size for later use */ _dl_pagesize = (auxvt[AT_PAGESZ].a_un.a_val) ? (size_t) auxvt[AT_PAGESZ].a_un.a_val : PAGE_SIZE; |