diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-09-08 14:05:33 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-09-08 14:05:33 +0000 |
commit | 87c812c2ad2ed5c0d4edf6da1f2fe26251f38925 (patch) | |
tree | fbd8e0c151be6a668b2e4f413fdc9abe982552ab /elf | |
parent | e4d509175a7fb8719b18a4d8caf2f421f2454be7 (diff) | |
download | glibc-87c812c2ad2ed5c0d4edf6da1f2fe26251f38925.tar.gz glibc-87c812c2ad2ed5c0d4edf6da1f2fe26251f38925.tar.xz glibc-87c812c2ad2ed5c0d4edf6da1f2fe26251f38925.zip |
Update.
* elf/rtld.c (dl_main): Don't update _dl_loaded here.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/rtld.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/elf/rtld.c b/elf/rtld.c index 52295deb2c..7216c19aab 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -411,7 +411,6 @@ of this helper program; chances are you did not intend to run this program.\n\ args.str = _dl_argv[0]; (void) _dl_catch_error (&err_str, map_doit, &args); - _dl_loaded = args.main_map; if (err_str != NULL) { free (err_str); @@ -419,7 +418,7 @@ of this helper program; chances are you did not intend to run this program.\n\ } } else - _dl_loaded = _dl_map_object (NULL, _dl_argv[0], 0, lt_library, 0); + _dl_map_object (NULL, _dl_argv[0], 0, lt_library, 0); phdr = _dl_loaded->l_phdr; phent = _dl_loaded->l_phnum; @@ -434,7 +433,7 @@ of this helper program; chances are you did not intend to run this program.\n\ { /* Create a link_map for the executable itself. This will be what dlopen on "" returns. */ - _dl_loaded = _dl_new_object ((char *) "", "", lt_executable, NULL); + _dl_new_object ((char *) "", "", lt_executable, NULL); if (_dl_loaded == NULL) _dl_sysdep_fatal ("cannot allocate memory for link map\n", NULL); _dl_loaded->l_phdr = phdr; |