mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-03 07:01:19 +00:00
Fix bogus assertion left in bug 463334.
This commit is contained in:
parent
ea86c32d99
commit
2cdbbe7481
@ -2956,7 +2956,7 @@ js_Interpret(JSContext *cx)
|
||||
JS_ASSERT(op == JSOP_STOP);
|
||||
|
||||
end_imacro:
|
||||
JS_ASSERT((uintN)(regs.sp - fp->slots) < script->nslots);
|
||||
JS_ASSERT((uintN)(regs.sp - fp->slots) <= script->nslots);
|
||||
regs.pc = fp->imacpc + js_CodeSpec[*fp->imacpc].length;
|
||||
fp->imacpc = NULL;
|
||||
atoms = script->atomMap.vector;
|
||||
|
Loading…
x
Reference in New Issue
Block a user