aboutsummaryrefslogtreecommitdiff
path: root/elf
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-02-28 06:40:08 +0000
committerUlrich Drepper <drepper@redhat.com>2002-02-28 06:40:08 +0000
commit51f38e87b13f233bdf76bd6d3edaabf4fd9eb126 (patch)
treef363fd6dc8e929a5f3d1bf45c9ee87b060d87a8d /elf
parentf027b0f6c2d6761dee8fed61d459b0c301a11b15 (diff)
downloadglibc-51f38e87b13f233bdf76bd6d3edaabf4fd9eb126.tar
glibc-51f38e87b13f233bdf76bd6d3edaabf4fd9eb126.tar.gz
glibc-51f38e87b13f233bdf76bd6d3edaabf4fd9eb126.tar.bz2
glibc-51f38e87b13f233bdf76bd6d3edaabf4fd9eb126.zip
Update.
* elf/dl-load.c (_dl_map_object_from_fd): Always add SONAME to l_libname if profiling is enabled [PR libc/2916].
Diffstat (limited to 'elf')
-rw-r--r--elf/dl-load.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/elf/dl-load.c b/elf/dl-load.c
index 48e7cba235..2be2083408 100644
--- a/elf/dl-load.c
+++ b/elf/dl-load.c
@@ -1225,6 +1225,13 @@ _dl_map_object_from_fd (const char *name, int fd, struct filebuf *fbp,
l->l_dev = st.st_dev;
l->l_ino = st.st_ino;
+ /* When we profile the SONAME might be needed for something else but
+ loading. Add it right away. */
+ if (__builtin_expect (GL(dl_profile) != NULL, 0)
+ && l->l_info[DT_SONAME] != NULL)
+ add_name_to_object (l, ((const char *) D_PTR (l, l_info[DT_STRTAB])
+ + l->l_info[DT_SONAME]->d_un.d_val));
+
return l;
}