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:
Родитель
9f6cd72918
Коммит
1696a856c9
|
@ -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) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче