зеркало из https://github.com/mozilla/gecko-dev.git
Bug 791371 - IonMonkey: ContextStack::currentScript needs check (r=dvander)
This commit is contained in:
Родитель
338f463705
Коммит
e3dfeea781
|
@ -531,6 +531,8 @@ ContextStack::currentScript(jsbytecode **ppc) const
|
||||||
if (fp->beginsIonActivation()) {
|
if (fp->beginsIonActivation()) {
|
||||||
JSScript *script = NULL;
|
JSScript *script = NULL;
|
||||||
ion::GetPcScript(cx_, &script, ppc);
|
ion::GetPcScript(cx_, &script, ppc);
|
||||||
|
if (script->compartment() != cx_->compartment)
|
||||||
|
return NULL;
|
||||||
return script;
|
return script;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Загрузка…
Ссылка в новой задаче