зеркало из https://github.com/mozilla/gecko-dev.git
Bug 876776 - Do not crash when dumping a NULL object, r=terrence
This commit is contained in:
Родитель
9c1d94755f
Коммит
27ccc0c762
|
@ -635,6 +635,10 @@ js_DumpChars(const jschar *s, size_t n)
|
|||
JS_FRIEND_API(void)
|
||||
js_DumpObject(JSObject *obj)
|
||||
{
|
||||
if (!obj) {
|
||||
fprintf(stderr, "NULL\n");
|
||||
return;
|
||||
}
|
||||
obj->dump();
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче