Bug 1483182 - Do report OOM failures in HashTable::reserve(). r=luke

This fixes a typo.

--HG--
extra : rebase_source : bc5d5eaa187797aa1167790c2bddd2db2110bf01
This commit is contained in:
Nicholas Nethercote 2018-08-21 19:07:20 +10:00
Родитель d4f517f3e2
Коммит de3b7e3af9
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2055,7 +2055,7 @@ public:
return true; // Capacity is already sufficient.
}
RebuildStatus status = changeTableSize(bestCapacity, DontReportFailure);
RebuildStatus status = changeTableSize(bestCapacity, ReportFailure);
MOZ_ASSERT(status != NotOverloaded);
return status != RehashFailed;
}