Bug 1211949 - check for allocation failure. r=nbp

This commit is contained in:
Lars T Hansen 2015-10-07 18:22:25 +01:00
Родитель 7a28d6ab43
Коммит 1f22d82796
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1335,7 +1335,7 @@ ObjectGroup::newPlainObject(ExclusiveContext* cx, IdValuePair* properties, size_
RootedPlainObject obj(cx, NewObjectWithGroup<PlainObject>(cx, group, allocKind,
newKind));
if (!obj->setLastProperty(cx, shape))
if (!obj || !obj->setLastProperty(cx, shape))
return nullptr;
for (size_t i = 0; i < nproperties; i++)