Skip to content
Snippets Groups Projects
Commit 2e31af9c authored by Jong Hyuk Choi's avatar Jong Hyuk Choi
Browse files

AVL delete upon shutdown (ITS#2367)

parent bdf02dde
No related branches found
No related tags found
No related merge requests found
......@@ -446,6 +446,7 @@ bdb_db_close( BackendDB *be )
entry = bdb->bi_idl_lru_head;
while ( entry != NULL ) {
next_entry = entry->idl_lru_next;
avl_delete( &bdb->bi_idl_tree, (caddr_t) entry, bdb_idl_entry_cmp );
free( entry->idl );
free( entry->kstr.bv_val );
free( entry );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment