Bug 1211956: Check result of EmptyShape::getInitialShape; r=h4writer

--HG--
extra : rebase_source : c2ec5ca1e09c8c5919a51469218bf58c070a8c54
This commit is contained in:
Benjamin Bouvier 2015-10-06 18:24:03 +02:00
Родитель 339a21eccf
Коммит d346e51c8d
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -627,6 +627,9 @@ js::ReshapeForAllocKind(JSContext* cx, Shape* shape, TaggedProto proto,
RootedId id(cx);
RootedShape newShape(cx, EmptyShape::getInitialShape(cx, shape->getObjectClass(),
proto, nfixed, shape->getObjectFlags()));
if (!newShape)
return nullptr;
for (unsigned i = 0; i < ids.length(); i++) {
id = ids[i];