зеркало из https://github.com/mozilla/gecko-dev.git
Fix assertions (followup to fix for bug 368369).
This commit is contained in:
Родитель
110bad95e6
Коммит
86e967cb1b
|
@ -637,7 +637,8 @@ nsXULPDGlobalObject::SetScriptContext(PRUint32 lang_id, nsIScriptContext *aScrip
|
|||
NS_ENSURE_SUCCESS(rv, rv);
|
||||
}
|
||||
|
||||
NS_ASSERTION(!aScriptContext, "Bad call to SetContext()!");
|
||||
NS_ASSERTION(!aScriptContext || !mScriptContexts[lang_ndx],
|
||||
"Bad call to SetContext()!");
|
||||
|
||||
void *script_glob = nsnull;
|
||||
|
||||
|
|
|
@ -818,7 +818,8 @@ nsGlobalWindow::SetScriptContext(PRUint32 lang_id, nsIScriptContext *aScriptCont
|
|||
NS_ENSURE_SUCCESS(rv, rv);
|
||||
}
|
||||
|
||||
NS_ASSERTION(!aScriptContext, "Bad call to SetContext()!");
|
||||
NS_ASSERTION(!aScriptContext || !mScriptContexts[lang_ndx],
|
||||
"Bad call to SetContext()!");
|
||||
|
||||
void *script_glob = nsnull;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче