diff options
author | Jason Evans <jasone@canonware.com> | 2015-08-11 06:42:33 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2015-08-11 06:42:33 (GMT) |
commit | 6bdeddb6976a9e372caafa6c5b270007b07c41ae (patch) | |
tree | f636a680b367bd354a68bbfdf0e83623c1903e13 | |
parent | ac5db02034c01357a4ce90504886046a58117921 (diff) | |
download | jemalloc-6bdeddb6976a9e372caafa6c5b270007b07c41ae.zip jemalloc-6bdeddb6976a9e372caafa6c5b270007b07c41ae.tar.gz jemalloc-6bdeddb6976a9e372caafa6c5b270007b07c41ae.tar.bz2 |
Fix build failure.
This regression was introduced by
de249c8679a188065949f2560b1f0015ea6534b4 (Arena chunk decommit cleanups
and fixes.).
This resolves #254.
-rw-r--r-- | include/jemalloc/internal/extent.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/jemalloc/internal/extent.h b/include/jemalloc/internal/extent.h index 969c786..386d50e 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); } |