Bug 897484 - GC: Convert JS_GetProperty APIs to take MutableHandleValue r=terrence r=bholley r=smaug

This commit is contained in:
Jon Coppeard
2013-07-26 10:00:38 +01:00
parent 26da22d0c1
commit 775f06b442
52 changed files with 186 additions and 181 deletions

View File

@@ -457,7 +457,7 @@ JavaScriptShared::Wrap(JSContext *cx, HandleObject aObj, InfallibleTArray<CpowEn
if (!convertIdToGeckoString(cx, id, &str))
return false;
if (!JS_GetPropertyById(cx, aObj, id, v.address()))
if (!JS_GetPropertyById(cx, aObj, id, &v))
return false;
JSVariant var;