diff --git a/doc/container.qbk b/doc/container.qbk index 2943e76..23152d9 100644 --- a/doc/container.qbk +++ b/doc/container.qbk @@ -1240,6 +1240,7 @@ use [*Boost.Container]? There are several reasons for that: * Improved range insertion in ['flat_[multi]map/set] containers overall complexity is reduced to O(NlogN). * Fixed bugs: + * [@https://github.com/boostorg/container/pull/61 GitHub #61: ['"Compile problems on Android ndk r16 beta 1"]]. * [@https://github.com/boostorg/container/pull/64 GitHub #64: ['"Fix splice for slist"]]. * [@https://github.com/boostorg/container/issues/58 GitHub #65: ['"`pmr::monotonic_buffer_resource::allocate()` can return a pointer to freed memory after `release()` is called"]]. diff --git a/src/dlmalloc_ext_2_8_6.c b/src/dlmalloc_ext_2_8_6.c index 2b6b138..3328d72 100644 --- a/src/dlmalloc_ext_2_8_6.c +++ b/src/dlmalloc_ext_2_8_6.c @@ -1092,7 +1092,7 @@ int boost_cont_multialloc_arrays /*Doug Lea malloc extensions*/ static boost_cont_malloc_stats_t get_malloc_stats(mstate m) { - boost_cont_malloc_stats_t ret; + boost_cont_malloc_stats_t ret = { 0, 0, 0 }; ensure_initialization(); if (!PREACTION(m)) { size_t maxfp = 0;