We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdc01c3 commit e6e1647Copy full SHA for e6e1647
src/forestdb.cc
@@ -4741,6 +4741,7 @@ fdb_status _fdb_bottom_up_index_build(fdb_kvs_handle *handle)
4741
_fdb_bottom_up_index_btreeblk_end,
4742
handle->bottom_up_build_entries);
4743
handle->trie->root_bid = new_key_trie.root_bid;
4744
+ hbtrie_free(&new_key_trie);
4745
4746
// Build seq-index next.
4747
if (handle->seqtrie) {
@@ -4757,6 +4758,7 @@ fdb_status _fdb_bottom_up_index_build(fdb_kvs_handle *handle)
4757
4758
4759
4760
handle->seqtrie->root_bid = new_seq_trie.root_bid;
4761
+ hbtrie_free(&new_seq_trie);
4762
} else if (handle->seqtree) {
4763
// Not supported yet.
4764
}
0 commit comments