Bug 601197: fix typo in js_GetBlockChain, r=wmccloskey

This commit is contained in:
David Mandelin 2010-10-01 12:29:39 -07:00
Родитель 8572cdcca1
Коммит 965a815ffc
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -175,7 +175,7 @@ js_GetBlockChain(JSContext *cx, JSStackFrame *fp)
return NULL;
JSScript *script = fp->script();
jsbytecode *start = script->main;
jsbytecode *start = script->code;
/* Assume that imacros don't affect blockChain */
jsbytecode *pc = fp->hasImacropc() ? fp->imacropc() : fp->pc(cx);