tst: memfs-dotnet: fix stream_create_overwrite_test

This commit is contained in:
Bill Zissimopoulos 2017-05-08 21:57:45 -07:00
parent bce0d63f7d
commit 5839d46b7a

View File

@ -410,7 +410,7 @@ namespace memfs
FileNode StreamNode = FileNodeMap.Get(StreamFileName);
if (null == StreamNode)
continue; /* should not happen */
if (0 == FileNode.OpenCount)
if (0 == StreamNode.OpenCount)
FileNodeMap.Remove(StreamNode);
}