mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 01:20:25 +00:00
malloc: Fix build with RECYCLE_BIG_ALLOCATIONS not defined
This commit is contained in:
parent
344090a5b0
commit
de4a9c61d7
Notes:
sideshowbarker
2024-07-19 03:31:38 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/de4a9c61d75 Pull-request: https://github.com/SerenityOS/serenity/pull/3185
1 changed files with 2 additions and 0 deletions
|
@ -174,12 +174,14 @@ static Allocator* allocator_for_size(size_t size, size_t& good_size)
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
#ifdef RECYCLE_BIG_ALLOCATIONS
|
||||
static BigAllocator* big_allocator_for_size(size_t size)
|
||||
{
|
||||
if (size == 65536)
|
||||
return &big_allocators()[0];
|
||||
return nullptr;
|
||||
}
|
||||
#endif
|
||||
|
||||
extern "C" {
|
||||
|
||||
|
|
Loading…
Reference in a new issue