Bug 810743 - First check for pending exceptions, _then_ examine the invoke result. r=mrbkap

This commit is contained in:
Bobby Holley 2012-11-12 16:17:24 -08:00
Родитель b04b41755f
Коммит 380b933b23
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -2474,12 +2474,12 @@ CallMethodHelper::Call()
mCallContext.GetXPCContext()->SetLastResult(invokeResult);
if (NS_FAILED(invokeResult)) {
ThrowBadResult(invokeResult, mCallContext);
if (JS_IsExceptionPending(mCallContext)) {
return false;
}
if (JS_IsExceptionPending(mCallContext)) {
if (NS_FAILED(invokeResult)) {
ThrowBadResult(invokeResult, mCallContext);
return false;
}