mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-24 13:53:11 +00:00
Fix a missing init value warning caught by static analysis.
This commit is contained in:
@@ -825,6 +825,7 @@ extent_try_coalesce_impl(tsdn_t *tsdn, pac_t *pac, ehooks_t *ehooks,
|
|||||||
ecache_t *ecache, edata_t *edata, bool *coalesced) {
|
ecache_t *ecache, edata_t *edata, bool *coalesced) {
|
||||||
assert(!edata_guarded_get(edata));
|
assert(!edata_guarded_get(edata));
|
||||||
assert(coalesced != NULL);
|
assert(coalesced != NULL);
|
||||||
|
*coalesced = false;
|
||||||
/*
|
/*
|
||||||
* We avoid checking / locking inactive neighbors for large size
|
* We avoid checking / locking inactive neighbors for large size
|
||||||
* classes, since they are eagerly coalesced on deallocation which can
|
* classes, since they are eagerly coalesced on deallocation which can
|
||||||
|
|||||||
Reference in New Issue
Block a user