Fix Mac startup crash: nil check for prefs.
This commit is contained in:
Родитель
feee6dc7ef
Коммит
1b4961ffaa
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче