diff --git a/Userland/Libraries/LibJS/Heap/BlockAllocator.h b/Userland/Libraries/LibJS/Heap/BlockAllocator.h index 70c873c10f..b70cf08d8d 100644 --- a/Userland/Libraries/LibJS/Heap/BlockAllocator.h +++ b/Userland/Libraries/LibJS/Heap/BlockAllocator.h @@ -20,7 +20,7 @@ public: void deallocate_block(void*); private: - static constexpr size_t max_cached_blocks = 64; + static constexpr size_t max_cached_blocks = 512; Vector m_blocks; };