mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-22 12:43:16 +00:00
Zero-sized arrays are not allowed by ISO C. C99 introduced a way to express this. Type-checking fails, because all_bins is asigned malloced storage of length > 0. Found by GCC and Clang (-Wpedantic).