(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 02059ab4a7
commit 5e3aa72855
1 changed files with 1 additions and 1 deletions

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)
{
}