Bug 778085 - Use the Handle API in a few more places in Proxy. r=efaust

This commit is contained in:
Bobby Holley
2012-08-10 13:55:55 +02:00
parent ea17133eb8
commit 8a910020e6
5 changed files with 23 additions and 21 deletions

View File

@@ -676,7 +676,7 @@ GetIterator(JSContext *cx, HandleObject obj, unsigned flags, MutableHandleValue
miss:
if (obj->isProxy()) {
types::MarkIteratorUnknown(cx);
return Proxy::iterate(cx, obj, flags, vp.address());
return Proxy::iterate(cx, obj, flags, vp);
}
if (!GetCustomIterator(cx, obj, flags, vp))
return false;