mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-05-18 10:56:20 +03:00
Remove a size class assertion from extent_size_quantize_floor().
Extent coalescence can result in legitimate calls to extent_size_quantize_floor() with size larger than LARGE_MAXCLASS.
This commit is contained in:
parent
871a9498e1
commit
a5a8d7ae8d
1 changed files with 0 additions and 1 deletions
|
|
@ -117,7 +117,6 @@ extent_size_quantize_floor(size_t size)
|
|||
pszind_t pind;
|
||||
|
||||
assert(size > 0);
|
||||
assert(size - large_pad <= LARGE_MAXCLASS);
|
||||
assert((size & PAGE_MASK) == 0);
|
||||
|
||||
assert(size != 0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue