Don't assume that all XOWs are equal. bug 391497, r+sr=jst

This commit is contained in:
mrbkap%gmail.com 2007-08-15 21:13:49 +00:00
Родитель 81de10686a
Коммит dca97a5087
1 изменённых файлов: 14 добавлений и 5 удалений

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

@ -324,11 +324,19 @@ WrapSameOriginProp(JSContext *cx, JSObject *outerObj, jsval *vp)
} }
JSObject *wrappedObj = JSVAL_TO_OBJECT(*vp); JSObject *wrappedObj = JSVAL_TO_OBJECT(*vp);
const char *name = JS_GET_CLASS(cx, wrappedObj)->name; JSClass *clasp = JS_GET_CLASS(cx, wrappedObj);
if (XPC_XOW_ClassNeedsXOW(name)) { if (XPC_XOW_ClassNeedsXOW(clasp->name)) {
return XPC_XOW_WrapObject(cx, JS_GetGlobalForObject(cx, outerObj), vp); return XPC_XOW_WrapObject(cx, JS_GetGlobalForObject(cx, outerObj), vp);
} }
// Check if wrappedObj is an XOW. If so, verify that it's from the
// right scope.
if (clasp == &sXPC_XOW_JSClass.base &&
JS_GetParent(cx, wrappedObj) != JS_GetParent(cx, outerObj)) {
*vp = OBJECT_TO_JSVAL(GetWrappedObject(cx, wrappedObj));
return XPC_XOW_WrapObject(cx, JS_GetParent(cx, outerObj), vp);
}
if (JS_ObjectIsFunction(cx, wrappedObj) && if (JS_ObjectIsFunction(cx, wrappedObj) &&
JS_GetFunctionNative(cx, reinterpret_cast<JSFunction *> JS_GetFunctionNative(cx, reinterpret_cast<JSFunction *>
(JS_GetPrivate(cx, wrappedObj))) == (JS_GetPrivate(cx, wrappedObj))) ==
@ -383,9 +391,10 @@ XPC_XOW_RewrapIfNeeded(JSContext *cx, JSObject *outerObj, jsval *vp)
return XPC_XOW_WrapFunction(cx, outerObj, obj, vp); return XPC_XOW_WrapFunction(cx, outerObj, obj, vp);
} }
// Don't need to wrap non-C++-implemented objects. if (JS_GET_CLASS(cx, obj) == &sXPC_XOW_JSClass.base &&
// Note: This catches attempts to double-wrap cross origin wrappers. JS_GetParent(cx, outerObj) != JS_GetParent(cx, obj)) {
if (!XPCWrappedNative::GetWrappedNativeOfJSObject(cx, obj)) { *vp = OBJECT_TO_JSVAL(GetWrappedObject(cx, obj));
} else if (!XPCWrappedNative::GetWrappedNativeOfJSObject(cx, obj)) {
return JS_TRUE; return JS_TRUE;
} }