mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 609671 - custom Android linker prevents system libraries from being dlopen'd, r=taras a=blocking-fennec
This commit is contained in:
parent
24e803030c
commit
17979f22b9
@ -1303,6 +1303,10 @@ soinfo *find_library(const char *name)
|
||||
}
|
||||
}
|
||||
|
||||
si = dlopen(name, RTLD_LAZY);
|
||||
if (si)
|
||||
return si;
|
||||
|
||||
TRACE("[ %5d '%s' has not been loaded yet. Locating...]\n", pid, name);
|
||||
si = load_library(name);
|
||||
if(si == NULL)
|
||||
|
Loading…
Reference in New Issue
Block a user