mirror of
https://github.com/jemalloc/jemalloc
synced 2026-06-08 15:01:07 +00:00
32896a902b
Fix arena_run_alloc_large_helper() to not convert size to usize when searching for the first best fit via arena_run_first_best_fit(). This allows the search to consider the optimal quantized size class, so that e.g. allocating and deallocating 40 KiB in a tight loop can reuse the same memory. This regression was nominally caused by5707d6f952(Quantize szad trees by size class.), but it did not commonly cause problems until8a03cf039c(Implement cache index randomization for large allocations.). These regressions were first released in 4.0.0. This resolves #487.