Fix Mac startup crash: nil check for prefs.

This commit is contained in:
sfraser%netscape.com 1999-07-23 22:23:13 +00:00
Родитель feee6dc7ef
Коммит 1b4961ffaa
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -429,7 +429,7 @@ nsHTMLDocument::StartDocumentLoad(const char* aCommand,
if(! gInitDetector)
{
nsIPref* pref = nsnull;
if(NS_SUCCEEDED(webShell->GetPrefs(pref)))
if(NS_SUCCEEDED(webShell->GetPrefs(pref)) && pref)
{
char* detector_name = nsnull;

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

@ -429,7 +429,7 @@ nsHTMLDocument::StartDocumentLoad(const char* aCommand,
if(! gInitDetector)
{
nsIPref* pref = nsnull;
if(NS_SUCCEEDED(webShell->GetPrefs(pref)))
if(NS_SUCCEEDED(webShell->GetPrefs(pref)) && pref)
{
char* detector_name = nsnull;