Bug 1452288 - Use calloc for allocating PLDHashTable entries. r=froydnj

--HG--
extra : rebase_source : 73f3aba71dc8ad8bc23786153f2a22cdbf86f8dd
This commit is contained in:
Eric Rahm 2018-04-06 16:51:58 -07:00
Родитель ffcb1034c3
Коммит 691c3159a1
1 изменённых файлов: 2 добавлений и 4 удалений

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

@ -476,7 +476,7 @@ PLDHashTable::ChangeTable(int32_t aDeltaLog2)
return false; // overflowed
}
char* newEntryStore = (char*)malloc(nbytes);
char* newEntryStore = (char*)calloc(1, nbytes);
if (!newEntryStore) {
return false;
}
@ -486,7 +486,6 @@ PLDHashTable::ChangeTable(int32_t aDeltaLog2)
mRemovedCount = 0;
// Assign the new entry store to table.
memset(newEntryStore, 0, nbytes);
char* oldEntryStore;
char* oldEntryAddr;
oldEntryAddr = oldEntryStore = mEntryStore.Get();
@ -555,11 +554,10 @@ PLDHashTable::Add(const void* aKey, const mozilla::fallible_t&)
// We already checked this in the constructor, so it must still be true.
MOZ_RELEASE_ASSERT(SizeOfEntryStore(CapacityFromHashShift(), mEntrySize,
&nbytes));
mEntryStore.Set((char*)malloc(nbytes), &mGeneration);
mEntryStore.Set((char*)calloc(1, nbytes), &mGeneration);
if (!mEntryStore.Get()) {
return nullptr;
}
memset(mEntryStore.Get(), 0, nbytes);
}
// If alpha is >= .75, grow or compress the table. If aKey is already in the