Commit ecc1e20a authored by Jon Coppeard's avatar Jon Coppeard
Browse files

Bug 1713345 - Fix typo in OOM crash message r=tcampbell

Depends on D116263

Differential Revision: https://phabricator.services.mozilla.com/D116264
parent f01ca1d5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;