зеркало из https://github.com/mozilla/gecko-dev.git
No Bug - Fix insane "error handling" in EmitFinishIteratorResult. (rs=jorendorff)
This commit is contained in:
Родитель
565feca341
Коммит
524fc6fe76
|
@ -2307,10 +2307,10 @@ EmitFinishIteratorResult(ExclusiveContext *cx, BytecodeEmitter *bce, bool done)
|
|||
{
|
||||
jsatomid value_id;
|
||||
if (!bce->makeAtomIndex(cx->names().value, &value_id))
|
||||
return UINT_MAX;
|
||||
return false;
|
||||
jsatomid done_id;
|
||||
if (!bce->makeAtomIndex(cx->names().done, &done_id))
|
||||
return UINT_MAX;
|
||||
return false;
|
||||
|
||||
if (!EmitIndex32(cx, JSOP_INITPROP, value_id, bce))
|
||||
return false;
|
||||
|
|
Загрузка…
Ссылка в новой задаче