Skip to content
Snippets Groups Projects
Commit d60bcb02 authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

Plug memory leak in avl_free()

parent b4658cbe
Branches
Tags
No related merge requests found
......@@ -608,6 +608,7 @@ avl_free( Avlnode *root, AVL_FREE dfree )
if ( dfree )
(*dfree)( root->avl_data );
free( root );
return( nleft + nright + 1 );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment