From 9e40ebc93d3f116e659cb3fd177b6f93d7e9296d Mon Sep 17 00:00:00 2001 From: janwas Date: Sat, 13 Aug 2005 23:37:31 +0000 Subject: [PATCH] RealDir.watch wasn't initialized, leading to complaints at exit. fixed This was SVN commit r2614. --- source/lib/res/file/vfs_tree.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/lib/res/file/vfs_tree.cpp b/source/lib/res/file/vfs_tree.cpp index 5c1188fd7b..b56cfa03f5 100644 --- a/source/lib/res/file/vfs_tree.cpp +++ b/source/lib/res/file/vfs_tree.cpp @@ -424,6 +424,7 @@ static inline Key GetKey(const T t) void TDir::init() { rd.m = 0; + rd.watch = 0; children.init(); }