зеркало из https://github.com/mozilla/gecko-dev.git
Bug 677194 - Change assertion to an early-return bailout. r=jst, a=akeybl
This commit is contained in:
Родитель
7c6bcb1a1c
Коммит
a56c056d48
|
@ -6100,7 +6100,10 @@ nsDOMConstructor::HasInstance(nsIXPConnectWrappedNative *wrapper,
|
|||
return NS_ERROR_UNEXPECTED;
|
||||
}
|
||||
|
||||
JS_ASSERT(!JSVAL_IS_PRIMITIVE(val));
|
||||
if (JSVAL_IS_PRIMITIVE(val)) {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
JSObject *dot_prototype = JSVAL_TO_OBJECT(val);
|
||||
|
||||
JSObject *proto = JS_GetPrototype(dom_obj);
|
||||
|
|
Загрузка…
Ссылка в новой задаче