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:
wtc%netscape.com 2001-10-17 23:34:50 +00:00
Родитель 9f6cd72918
Коммит 1696a856c9
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -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) {