mufs: delete the tree object of a file in mufs_close()

This commit is contained in:
S.J.R. van Schaik 2017-06-14 13:49:49 +02:00
parent a8040ac525
commit 7be03f4a60

View file

@ -65,6 +65,7 @@ void mufs_close(struct mufs_file *file)
if (!file)
return;
mufs_del_tree(file->tree);
free(file);
}