Bug 1245965 - Fix and OOM handling failure in NewMemInfoObject; r=sfink

--HG--
extra : rebase_source : 08eceb5e105563737ca4719c0a3f49838a544650
This commit is contained in:
Terrence Cole 2016-02-09 14:04:37 -08:00
Родитель 981e160b2f
Коммит 53d8ea58d4
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -7737,6 +7737,8 @@ JSObject*
NewMemoryInfoObject(JSContext* cx)
{
RootedObject obj(cx, JS_NewObject(cx, nullptr));
if (!obj)
return nullptr;
using namespace MemInfo;
struct NamedGetter {