diff options
author | Jakub Jelinek <jakub@redhat.com> | 2005-02-11 15:02:46 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2005-02-11 15:02:46 +0000 |
commit | 88da3f5402868f2f90d12d7335ab41de6308ff8a (patch) | |
tree | 1dbfada3b45ffe9e0c044c00f73c3ae2e0acc381 /elf | |
parent | 8426ecf6be9006d5b44f5fa54ac4c75e620f5fd1 (diff) | |
download | glibc-88da3f5402868f2f90d12d7335ab41de6308ff8a.tar.gz glibc-88da3f5402868f2f90d12d7335ab41de6308ff8a.tar.xz glibc-88da3f5402868f2f90d12d7335ab41de6308ff8a.zip |
* elf/rtld.c (_dl_start): Set bootstrap_map.l_relocated even
for already prelinked ld.so.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/rtld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/rtld.c b/elf/rtld.c index 9fda5b8122..2c42336f14 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -509,8 +509,8 @@ _dl_start (void *arg) data access using the global offset table. */ ELF_DYNAMIC_RELOCATE (&bootstrap_map, 0, 0); - bootstrap_map.l_relocated = 1; } + bootstrap_map.l_relocated = 1; /* Please note that we don't allow profiling of this object and therefore need not test whether we have to allocate the array |