зеркало из https://github.com/mozilla/pjs.git
Typo fixes for previous patch, r=jwalden
This commit is contained in:
Родитель
0201710b5b
Коммит
c7f7565f33
|
@ -2964,7 +2964,7 @@ JS_SetPrivate(JSContext *cx, JSObject *obj, void *data)
|
|||
JS_PUBLIC_API(void *)
|
||||
JS_GetInstancePrivate(JSContext *cx, JSObject *obj, JSClass *clasp, jsval *argv)
|
||||
{
|
||||
if (JS_InstanceOf(cx, obj, clasp, argv))
|
||||
if (!JS_InstanceOf(cx, obj, clasp, argv))
|
||||
return NULL;
|
||||
return obj->getPrivate();
|
||||
}
|
||||
|
|
|
@ -7528,6 +7528,7 @@ GetPrivate(JSContext *cx, JSObject *obj, const char *method)
|
|||
JS_ReportErrorNumber(cx, js_GetErrorMessage, NULL,
|
||||
JSMSG_INCOMPATIBLE_METHOD,
|
||||
js_XML_str, method, obj->getClass()->name);
|
||||
return NULL;
|
||||
}
|
||||
return (JSXML *)obj->getPrivate();
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче