mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
* elf/do-lookup.h (do_lookup_x): No need to compare SKIP to NULL
before comparison with MAP. * elf/dl-sym.c (do_sym): For RTLD_NEXT, pass MATCH to dl_lookup_symbol_x instead of L.
This commit is contained in:
parent
74c5693b2e
commit
67d7308c0a
@ -1,3 +1,11 @@
|
|||||||
|
2006-02-26 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* elf/do-lookup.h (do_lookup_x): No need to compare SKIP to NULL
|
||||||
|
before comparison with MAP.
|
||||||
|
|
||||||
|
* elf/dl-sym.c (do_sym): For RTLD_NEXT, pass MATCH to
|
||||||
|
dl_lookup_symbol_x instead of L.
|
||||||
|
|
||||||
2006-02-24 Mike Frysinger <vapier@gentoo.org>
|
2006-02-24 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* sysdeps/gnu/net/if.h (IFF_DYNAMIC): New macro.
|
* sysdeps/gnu/net/if.h (IFF_DYNAMIC): New macro.
|
||||||
@ -6,7 +14,6 @@
|
|||||||
|
|
||||||
* configure.in: Use sparc/sparc32/sparcv9/sparcv9b in place
|
* configure.in: Use sparc/sparc32/sparcv9/sparcv9b in place
|
||||||
of sparc/sparc32/sparcv9b.
|
of sparc/sparc32/sparcv9b.
|
||||||
* configure: Regenerated.
|
|
||||||
* sysdeps/sparc/sparc32/sparcv9b/Implies: File removed.
|
* sysdeps/sparc/sparc32/sparcv9b/Implies: File removed.
|
||||||
* sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9b/Implies: File removed.
|
* sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9b/Implies: File removed.
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Look up a symbol in a shared object loaded by `dlopen'.
|
/* Look up a symbol in a shared object loaded by `dlopen'.
|
||||||
Copyright (C) 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
|
Copyright (C) 1999,2000,2001,2002,2004,2006 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Look up a symbol in the loaded objects.
|
/* Look up a symbol in the loaded objects.
|
||||||
Copyright (C) 1995-2004, 2005 Free Software Foundation, Inc.
|
Copyright (C) 1995-2004, 2005, 2006 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -45,7 +45,7 @@ do_lookup_x (const char *undef_name, unsigned long int hash,
|
|||||||
map = list[i]->l_real;
|
map = list[i]->l_real;
|
||||||
|
|
||||||
/* Here come the extra test needed for `_dl_lookup_symbol_skip'. */
|
/* Here come the extra test needed for `_dl_lookup_symbol_skip'. */
|
||||||
if (skip != NULL && map == skip)
|
if (map == skip)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
/* Don't search the executable when resolving a copy reloc. */
|
/* Don't search the executable when resolving a copy reloc. */
|
||||||
|
Loading…
Reference in New Issue
Block a user