about summary refs log tree commit diff stats
path: root/src/core.c
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2025-01-15 11:48:58 +0100
committerptitSeb <sebastien.chev@gmail.com>2025-01-15 11:48:58 +0100
commit72df0bd1a034f0e7f85b4d778f78ba2e542f5148 (patch)
tree72099c6cf4d11fc41215f68c4eed493dbbf43ca1 /src/core.c
parent6035cbd5c1204d7c68bb144b948b0ee1c66061d9 (diff)
downloadbox64-72df0bd1a034f0e7f85b4d778f78ba2e542f5148.tar.gz
box64-72df0bd1a034f0e7f85b4d778f78ba2e542f5148.zip
Fixed dlsym with RTLD_NEXT and preloaded libs
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.c b/src/core.c
index a6972f8b..530f616d 100644
--- a/src/core.c
+++ b/src/core.c
@@ -2513,7 +2513,7 @@ int initialize(int argc, const char **argv, char** env, x64emu_t** emulator, elf
         dynarec_wine_prereserve();
         #endif
     }
-    AddMainElfToLinkmap(elf_header);
+    AddMainElfToLinkmap(elf_header);    //TODO: LinkMap seems incorect
     // pre-load lib if needed
     if(ld_preload.size) {
         my_context->preload = new_neededlib(0);