Bugzilla bug 158240: fixed a crash on startup if NSPR_LOG_FILE is set on

BeOS.  The patch is contributed by arougthopher@lizardland.net (Paul).
r=wtc.
This commit is contained in:
wtc%netscape.com 2003-09-11 17:41:29 +00:00
Родитель 37614333a2
Коммит da3b407479
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -266,7 +266,7 @@ static void DLLErrorInternal(PRIntn oserr)
void _PR_InitLinker(void)
{
#ifndef XP_MAC
#if !defined(XP_MAC) && !defined(XP_BEOS)
PRLibrary *lm;
#endif
#if defined(XP_UNIX)
@ -335,7 +335,7 @@ void _PR_InitLinker(void)
#endif /* HAVE_DLL */
#endif /* XP_UNIX */
#ifndef XP_MAC
#if !defined(XP_MAC) && !defined(XP_BEOS)
PR_LOG(_pr_linker_lm, PR_LOG_MIN, ("Loaded library %s (init)", lm?lm->name:"NULL"));
#endif