mirror of
https://github.com/fluencelabs/musl
synced 2025-06-27 21:52:02 +00: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:
@ -2,5 +2,5 @@
|
|||||||
.global dlsym
|
.global dlsym
|
||||||
.type dlsym,@function
|
.type dlsym,@function
|
||||||
dlsym:
|
dlsym:
|
||||||
mov (%rsp),%edx
|
mov (%rsp),%rdx
|
||||||
jmp __dlsym
|
jmp __dlsym
|
||||||
|
Reference in New Issue
Block a user