mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Update.
2001-02-06 Jakub Jelinek <jakub@redhat.com> * elf/dl-load.c (_dl_map_object): Don't test l_opencount when looking for name matches.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2001-02-06 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* elf/dl-load.c (_dl_map_object): Don't test l_opencount when
|
||||||
|
looking for name matches.
|
||||||
|
|
||||||
2001-02-26 Jakub Jelinek <jakub@redhat.com>
|
2001-02-26 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* sysdeps/generic/sigcontextinfo.h (CALL_SIGHANDLER): Define.
|
* sysdeps/generic/sigcontextinfo.h (CALL_SIGHANDLER): Define.
|
||||||
|
@ -1514,9 +1514,7 @@ _dl_map_object (struct link_map *loader, const char *name, int preloaded,
|
|||||||
/* If the requested name matches the soname of a loaded object,
|
/* If the requested name matches the soname of a loaded object,
|
||||||
use that object. Elide this check for names that have not
|
use that object. Elide this check for names that have not
|
||||||
yet been opened. */
|
yet been opened. */
|
||||||
/* XXX Is this test still correct after the reference counter
|
if (l->l_faked == 0)
|
||||||
handling rewrite? */
|
|
||||||
if (l->l_opencount == 0)
|
|
||||||
continue;
|
continue;
|
||||||
if (!_dl_name_match_p (name, l))
|
if (!_dl_name_match_p (name, l))
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user