Bug 896540 - GC: Convert JS_SetProperty* to take MutableHandleValue - browser changes r=bz

This commit is contained in:
Jon Coppeard
2013-07-25 13:57:00 +01:00
parent c63ccce93a
commit 3c93e78516
18 changed files with 51 additions and 51 deletions

View File

@@ -436,7 +436,7 @@ JavaScriptParent::call(JSContext *cx, HandleObject proxy, const CallArgs &args)
return false;
JSObject *obj = &outobjects[i].toObject();
if (!JS_SetProperty(cx, obj, "value", v.address()))
if (!JS_SetProperty(cx, obj, "value", &v))
return false;
}