зеркало из https://github.com/mozilla/pjs.git
Bug 626599 - Compartment can be null in js_SetDebugMode (r=gal)
--HG-- extra : rebase_source : f901f1f51d6d2bc157705b1713736bb71e877439
This commit is contained in:
Родитель
a4f90464bc
Коммит
d39d61661f
|
@ -141,6 +141,9 @@ PurgeCallICs(JSContext *cx, JSScript *start)
|
|||
JS_FRIEND_API(JSBool)
|
||||
js_SetDebugMode(JSContext *cx, JSBool debug)
|
||||
{
|
||||
if (!cx->compartment)
|
||||
return JS_TRUE;
|
||||
|
||||
cx->compartment->debugMode = debug;
|
||||
#ifdef JS_METHODJIT
|
||||
for (JSScript *script = (JSScript *)cx->compartment->scripts.next;
|
||||
|
|
Загрузка…
Ссылка в новой задаче