This commit is contained in:
brendan%mozilla.org 2006-11-20 19:49:09 +00:00
Родитель 41efc0d724
Коммит 2e73d1ac44
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -5320,7 +5320,7 @@ interrupt:
for (obj = fp->blockChain; obj; obj = OBJ_GET_PARENT(cx, obj)) { for (obj = fp->blockChain; obj; obj = OBJ_GET_PARENT(cx, obj)) {
JS_ASSERT(OBJ_GET_CLASS(cx, obj) == &js_BlockClass); JS_ASSERT(OBJ_GET_CLASS(cx, obj) == &js_BlockClass);
if (OBJ_BLOCK_DEPTH(cx, obj) + OBJ_BLOCK_COUNT(cx, obj) <= i) { if (OBJ_BLOCK_DEPTH(cx, obj) + (jsint)OBJ_BLOCK_COUNT(cx, obj) <= i) {
JS_ASSERT(OBJ_BLOCK_DEPTH(cx, obj) < i || OBJ_BLOCK_COUNT(cx, obj) == 0); JS_ASSERT(OBJ_BLOCK_DEPTH(cx, obj) < i || OBJ_BLOCK_COUNT(cx, obj) == 0);
break; break;
} }