Backed out changeset 642c6ef227f1 (bug 1601483) for causing assertion in HashTable.h CLOSED TREE

This commit is contained in:
Noemi Erli 2019-12-05 15:31:06 +02:00
Родитель 8aa73cecc2
Коммит 383f77dead
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2056,7 +2056,7 @@ class HashTable : private AllocPolicy {
}
MOZ_ALWAYS_INLINE Ptr readonlyThreadsafeLookup(const Lookup& aLookup) const {
if (empty() || !HasHash<HashPolicy>(aLookup)) {
if (!mTable || !HasHash<HashPolicy>(aLookup)) {
return Ptr();
}
HashNumber keyHash = prepareHash(aLookup);