mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-05 05:30:29 +00:00
Bugzilla bug 71179: Neutrino needs the RTLD_GROUP flag to load Netscape
plugins. The fix is contributed by timeless@bemail.org.
This commit is contained in:
parent
b16a33b95c
commit
aade5200de
@ -748,7 +748,12 @@ pr_LoadLibraryByPathname(const char *name, PRIntn flags)
|
||||
#ifdef HAVE_DLL
|
||||
{
|
||||
#if defined(USE_DLFCN)
|
||||
#ifdef NTO
|
||||
/* Neutrino needs RTLD_GROUP to load Netscape plugins. (bug 71179) */
|
||||
int dl_flags = RTLD_GROUP;
|
||||
#else
|
||||
int dl_flags = 0;
|
||||
#endif
|
||||
void *h;
|
||||
|
||||
if (flags & PR_LD_LAZY) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user