Fix ObjectWrapperChild bustage

This commit is contained in:
Robert Sayre 2010-07-02 18:17:06 -07:00
Родитель 2fd899ed0f
Коммит 422d275bc6
2 изменённых файлов: 3 добавлений и 4 удалений

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

@ -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);