mirror of
https://git.musl-libc.org/git/musl
synced 2025-02-03 20:05:37 +03:00
fix RTLD_NEXT on x86_64
the return address was being truncated to 32 bits, preventing the dlsym code from determining which module contains the calling code.
This commit is contained in:
parent
b158b32a44
commit
ad70ba774f
@ -2,5 +2,5 @@
|
||||
.global dlsym
|
||||
.type dlsym,@function
|
||||
dlsym:
|
||||
mov (%rsp),%edx
|
||||
mov (%rsp),%rdx
|
||||
jmp __dlsym
|
||||
|
Loading…
x
Reference in New Issue
Block a user