Bug 1512042 - Fix bustage on MacOS X r=me on a CLOSED TREE

This commit is contained in:
Jon Coppeard 2019-01-28 10:52:15 +00:00
Родитель 0746e98005
Коммит 2babbba18b
1 изменённых файлов: 2 добавлений и 3 удалений

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

@ -565,9 +565,8 @@ void GCRuntime::markBufferedGrayRoots(JS::Zone* zone) {
auto addr = uintptr_t(cell);
if (addr < ChunkSize || addr % CellAlignBytes != 0) {
MOZ_CRASH_UNSAFE_PRINTF(
"Bad GC thing pointer in gray root buffer: %p at index %zu of %zu, "
"address %p",
cell, i, roots.length(), &roots[i]);
"Bad GC thing pointer in gray root buffer: %p at address %p",
cell, &iter.Get());
}
#else
MOZ_ASSERT(IsCellPointerValid(cell));