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

@@ -414,7 +414,7 @@ JavaScriptChild::AnswerSet(const ObjectId &objId, const ObjectId &receiverId, co
if (!toValue(cx, value, &val))
return fail(cx, rs);
if (!JS_SetPropertyById(cx, obj, internedId, val.address()))
if (!JS_SetPropertyById(cx, obj, internedId, &val))
return fail(cx, rs);
if (!toVariant(cx, val, result))