Bug 1066878 part 3 - Fix NewObjectWithGivenProto to actually use its allocKind argument. r=bhackett

This commit is contained in:
Jan de Mooij 2015-01-30 22:12:06 +01:00
Родитель 9372e4ace7
Коммит 87c129addd
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -550,7 +550,8 @@ inline T *
NewObjectWithGivenProto(ExclusiveContext *cx, JSObject *proto, JSObject *parent,
gc::AllocKind allocKind, NewObjectKind newKind = GenericObject)
{
JSObject *obj = NewObjectWithGivenProto(cx, &T::class_, TaggedProto(proto), parent, newKind);
JSObject *obj = NewObjectWithGivenProto(cx, &T::class_, TaggedProto(proto), parent, allocKind,
newKind);
return obj ? &obj->as<T>() : nullptr;
}