diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-02-26 20:45:55 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-02-26 20:45:55 +0000 |
commit | 74c5693b2e5475585ccaba8deadf8ca3b58a330a (patch) | |
tree | 0c18c16c74005164a8215768fcc838a14e1765c9 /elf/dl-sym.c | |
parent | 1d62ae8a22d409917e29270a5e9bc900035c0930 (diff) | |
download | glibc-74c5693b2e5475585ccaba8deadf8ca3b58a330a.tar glibc-74c5693b2e5475585ccaba8deadf8ca3b58a330a.tar.gz glibc-74c5693b2e5475585ccaba8deadf8ca3b58a330a.tar.bz2 glibc-74c5693b2e5475585ccaba8deadf8ca3b58a330a.zip |
(do_sym): For RTLD_NEXT, pass MATCH for dl_lookup_symbol_x, not L.
Diffstat (limited to 'elf/dl-sym.c')
-rw-r--r-- | elf/dl-sym.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/dl-sym.c b/elf/dl-sym.c index ca83daf21d..40df7f0078 100644 --- a/elf/dl-sym.c +++ b/elf/dl-sym.c @@ -103,7 +103,7 @@ RTLD_NEXT used in code not dynamically loaded")); while (l->l_loader != NULL) l = l->l_loader; - result = GLRO(dl_lookup_symbol_x) (name, l, &ref, l->l_local_scope, + result = GLRO(dl_lookup_symbol_x) (name, match, &ref, l->l_local_scope, vers, 0, 0, match); } else |