Bug 408720, try to reduce MH, r+sr=sicking

This commit is contained in:
Olli.Pettay@helsinki.fi 2008-01-01 07:39:03 -08:00
Родитель 3f4c269e7e
Коммит 3d398798e0
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -151,7 +151,7 @@ nsDOMNodeAllocator::Alloc(size_t aSize)
mPool = new PLArenaPool();
NS_ENSURE_TRUE(mPool, nsnull);
PL_InitArenaPool(mPool, "nsDOMNodeAllocator",
4096 * (sizeof(void*)/2), 0);
4096 * (sizeof(void*)/4), 0);
}
// Allocate a new chunk from the arena
PL_ARENA_ALLOCATE(result, mPool, aSize);