From 6bdeddb6976a9e372caafa6c5b270007b07c41ae Mon Sep 17 00:00:00 2001 From: Jason Evans Date: Mon, 10 Aug 2015 23:42:33 -0700 Subject: [PATCH] Fix build failure. This regression was introduced by de249c8679a188065949f2560b1f0015ea6534b4 (Arena chunk decommit cleanups and fixes.). This resolves #254. --- include/jemalloc/internal/extent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/jemalloc/internal/extent.h b/include/jemalloc/internal/extent.h index 969c7866..386d50ef 100644 --- a/include/jemalloc/internal/extent.h +++ b/include/jemalloc/internal/extent.h @@ -125,7 +125,7 @@ JEMALLOC_INLINE bool extent_node_committed_get(const extent_node_t *node) { - assert(!extent_node_achunk_get(node)); + assert(!node->en_achunk); return (node->en_committed); }