Browse Source

Initialize all HashBase members.

cosmy 9 years ago
parent
commit
dfb3c8409c
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Source/Urho3D/Container/HashBase.h

+ 2 - 0
Source/Urho3D/Container/HashBase.h

@@ -107,6 +107,8 @@ public:
 
     /// Construct.
     HashBase() :
+        head_(0),
+        tail_(0),
         ptrs_(0),
         allocator_(0)
     {