зеркало из https://github.com/mozilla/gecko-dev.git
Fix ObjectWrapperChild bustage
This commit is contained in:
Родитель
2fd899ed0f
Коммит
422d275bc6
|
@ -152,8 +152,7 @@ ObjectWrapperChild::ObjectWrapperChild(JSContext* cx, JSObject* obj)
|
|||
#ifdef DEBUG
|
||||
bool added =
|
||||
#endif
|
||||
JS_AddNamedRoot(cx, (void*)&mObj,
|
||||
"mozilla::jsipc::ObjectWrapperChild-rooted JSObject*");
|
||||
JS_AddObjectRoot(cx, &mObj);
|
||||
NS_ASSERTION(added, "ObjectWrapperChild constructor failed to root JSObject*");
|
||||
}
|
||||
|
||||
|
@ -162,7 +161,7 @@ ObjectWrapperChild::ActorDestroy(ActorDestroyReason why)
|
|||
{
|
||||
JSContext* cx = Manager()->GetContext();
|
||||
JSAutoRequest request(cx);
|
||||
JS_RemoveRoot(cx, (void*)&mObj);
|
||||
JS_RemoveObjectRoot(cx, &mObj);
|
||||
}
|
||||
|
||||
bool
|
||||
|
|
|
@ -67,7 +67,7 @@ public:
|
|||
|
||||
private:
|
||||
|
||||
JSObject* const mObj;
|
||||
JSObject* mObj;
|
||||
|
||||
bool JSObject_to_JSVariant(JSContext* cx, JSObject* from, JSVariant* to);
|
||||
bool jsval_to_JSVariant(JSContext* cx, jsval from, JSVariant* to);
|
||||
|
|
Загрузка…
Ссылка в новой задаче