diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-06-26 21:50:01 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-06-26 21:50:01 -0400 |
commit | 97507bde474b0091a28628a7dae943c377758d49 (patch) | |
tree | 31e25a8460d8fcdcb176107bfe7f74d510eeee0e /src/ldso | |
parent | 0e4dae3d77f67bed0cd29c98b67b86c7d9853ac9 (diff) | |
download | musl-97507bde474b0091a28628a7dae943c377758d49.tar.gz musl-97507bde474b0091a28628a7dae943c377758d49.tar.xz musl-97507bde474b0091a28628a7dae943c377758d49.zip |
add RTLD_DEFAULT support
Diffstat (limited to 'src/ldso')
-rw-r--r-- | src/ldso/dynlink.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ldso/dynlink.c b/src/ldso/dynlink.c index a23390e1..1cab8d12 100644 --- a/src/ldso/dynlink.c +++ b/src/ldso/dynlink.c @@ -541,7 +541,8 @@ static void *do_dlsym(struct dso *p, const char *s) size_t i; uint32_t h; Sym *sym; - if (p == head) return find_sym(head, s, 0); + if (p == head || p == RTLD_DEFAULT) + return find_sym(head, s, 0); h = hash(s); sym = lookup(s, h, p->syms, p->hashtab, p->strings); if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES)) |