зеркало из https://github.com/mozilla/pjs.git
Bug 634752 - Always drop jsPrincipals before returning from LoadSubScript, r+a=jst
This commit is contained in:
Родитель
c2abb5d071
Коммит
ab404407f0
|
@ -392,6 +392,7 @@ mozJSSubScriptLoader::LoadSubScript (const PRUnichar * aURL
|
|||
|
||||
if (NS_FAILED(rv))
|
||||
{
|
||||
JSPRINCIPALS_DROP(cx, jsPrincipals);
|
||||
errmsg = JS_NewStringCopyZ(cx, LOAD_ERROR_BADCHARSET);
|
||||
goto return_exception;
|
||||
}
|
||||
|
@ -405,6 +406,8 @@ mozJSSubScriptLoader::LoadSubScript (const PRUnichar * aURL
|
|||
buf, len, uriStr.get(), 1, rval);
|
||||
}
|
||||
|
||||
JSPRINCIPALS_DROP(cx, jsPrincipals);
|
||||
|
||||
if (ok)
|
||||
{
|
||||
JSAutoEnterCompartment rac;
|
||||
|
@ -417,8 +420,6 @@ mozJSSubScriptLoader::LoadSubScript (const PRUnichar * aURL
|
|||
JS_SetErrorReporter (cx, er);
|
||||
|
||||
cc->SetReturnValueWasSet (ok);
|
||||
|
||||
JSPRINCIPALS_DROP(cx, jsPrincipals);
|
||||
return NS_OK;
|
||||
|
||||
return_exception:
|
||||
|
|
Загрузка…
Ссылка в новой задаче