Mark newborn generators' frames (343455, r=mrbkap).

This commit is contained in:
brendan%mozilla.org 2006-07-21 02:00:36 +00:00
Родитель 571bed96a5
Коммит ca84af0dfc
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -660,7 +660,7 @@ generator_mark(JSContext *cx, JSObject *obj, void *arg)
JSGenerator *gen;
gen = (JSGenerator *) JS_GetPrivate(cx, obj);
if (gen && gen->state == JSGEN_RUNNING)
if (gen && gen->state != JSGEN_CLOSED)
js_MarkStackFrame(cx, &gen->frame);
return 0;
}