(svn r26124) -Fix: make sure all members of the default string iterator are initialised

This commit is contained in:
rubidium
2013-11-26 13:42:09 +00:00
parent cf6fe08d8a
commit d2598167ad

View File

@@ -805,7 +805,7 @@ class DefaultStringIterator : public StringIterator
size_t cur_pos; ///< Current iteration position.
public:
DefaultStringIterator() : string(NULL)
DefaultStringIterator() : string(NULL), len(0), cur_pos(0)
{
}