Loading js/src/gc/Allocator.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -480,7 +480,7 @@ TenuredCell* js::gc::AllocateCellInGC(Zone* zone, AllocKind thingKind) { AutoEnterOOMUnsafeRegion oomUnsafe; cell = GCRuntime::refillFreeListInGC(zone, thingKind); if (!cell) { oomUnsafe.crash(ChunkSize, "Failed not allocate new chunk during GC"); oomUnsafe.crash(ChunkSize, "Failed to allocate new chunk during GC"); } } return cell; Loading Loading
js/src/gc/Allocator.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -480,7 +480,7 @@ TenuredCell* js::gc::AllocateCellInGC(Zone* zone, AllocKind thingKind) { AutoEnterOOMUnsafeRegion oomUnsafe; cell = GCRuntime::refillFreeListInGC(zone, thingKind); if (!cell) { oomUnsafe.crash(ChunkSize, "Failed not allocate new chunk during GC"); oomUnsafe.crash(ChunkSize, "Failed to allocate new chunk during GC"); } } return cell; Loading