bindfs: Fix double deletion of root node on unmount

The VFS calls the FS's put_vnode() for all nodes, including the root
node, prior to calling unmount().
This commit is contained in:
Ingo Weinhold
2013-04-04 11:24:39 +02:00
parent 1add554a83
commit 6d04dfb7a9
@@ -40,7 +40,6 @@ Volume::Volume(fs_volume* fsVolume)
Volume::~Volume()
{
delete fRootNode;
}