Fix toString on the XPCNativeWrapper prototype to return something sane instead

of crashing.  Bug 295430, r+sr=jst, a=shaver


git-svn-id: svn://10.0.0.236/trunk@173914 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzbarsky%mit.edu
2005-06-01 15:20:29 +00:00
parent 510c50c5e2
commit 9792b7f6d0

View File

@@ -1020,6 +1020,18 @@ XPC_NW_toString(JSContext *cx, JSObject *obj, uintN argc, jsval *argv,
XPCWrappedNative *wrappedNative =
XPCNativeWrapper::GetWrappedNative(cx, obj);
if (!wrappedNative) {
// toString() called on XPCNativeWrapper.prototype
NS_NAMED_LITERAL_STRING(protoString, "[object XPCNativeWrapper]");
JSString *str =
::JS_NewUCStringCopyN(cx, NS_REINTERPRET_CAST(const jschar*,
protoString.get()),
protoString.Length());
NS_ENSURE_TRUE(str, JS_FALSE);
*rval = STRING_TO_JSVAL(str);
return JS_TRUE;
}
JSObject *wn_obj = wrappedNative->GetFlatJSObject();
jsval toStringVal;