Bug 791371 - IonMonkey: ContextStack::currentScript needs check (r=dvander)

This commit is contained in:
Bill McCloskey 2012-09-14 16:23:43 -07:00
Родитель 338f463705
Коммит e3dfeea781
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -531,6 +531,8 @@ ContextStack::currentScript(jsbytecode **ppc) const
if (fp->beginsIonActivation()) {
JSScript *script = NULL;
ion::GetPcScript(cx_, &script, ppc);
if (script->compartment() != cx_->compartment)
return NULL;
return script;
}
#endif