diff options
author | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2004-08-19 08:08:27 +0000 |
---|---|---|
committer | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2004-08-19 08:08:27 +0000 |
commit | 4135087a92ec76555f2c8d242cd526afc8384cdd (patch) | |
tree | 25b5efc8fea4295ea6d5d740d19ef588ceb092af | |
parent | 60b67c2ea8243761632297f2d18de348d6924903 (diff) |
Oops, forgot to remove unused variable.
-rw-r--r-- | ldso/ldso/dl-startup.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ldso/ldso/dl-startup.c b/ldso/ldso/dl-startup.c index bd8287047..aaca86831 100644 --- a/ldso/ldso/dl-startup.c +++ b/ldso/ldso/dl-startup.c @@ -131,7 +131,6 @@ DL_BOOT(unsigned long args) Elf32_auxv_t auxvt[AT_EGID + 1]; unsigned char *malloc_buffer, *mmap_zero; Elf32_Dyn *dpnt; - unsigned long *hash_addr; struct r_debug *debug_addr = NULL; size_t pagesize; int indx; @@ -528,7 +527,7 @@ found_got: free to start using global variables, since these things have all been fixed up by now. Still no function calls outside of this library , since the dynamic resolver is not yet ready. */ - _dl_get_ready_to_run(tpnt, app_tpnt, load_addr, hash_addr, + _dl_get_ready_to_run(tpnt, app_tpnt, load_addr, 0, auxvt, envp, debug_addr, malloc_buffer, mmap_zero, argv); |