diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/wrapped/wrappedlibdl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wrapped/wrappedlibdl.c b/src/wrapped/wrappedlibdl.c index d7831740..d8b73b34 100644 --- a/src/wrapped/wrappedlibdl.c +++ b/src/wrapped/wrappedlibdl.c @@ -428,8 +428,9 @@ void* my_dlsym(x64emu_t* emu, void *handle, void *symbol) int found = 0; if(ElfGetSymTabStartEnd(my_context->elfs[0], &start, &end, rsymbol)) found = 1; + if(!found && GetGlobalSymbolStartEnd(my_context->maplib, rsymbol, &start, &end, NULL, -1, NULL, 0, NULL)) + found = 1; if(!found && GetSymTabStartEnd(my_context->maplib, rsymbol, &start, &end)) - //if(!found && GetGlobalSymbolStartEnd(my_context->maplib, rsymbol, &start, &end, NULL, -1, NULL, 0, NULL)) found = 1; if(found) { printf_dlsym(LOG_NEVER, "%p\n", (void*)start); |