another flint detected issue - init to 0 instead of with ourselves

This commit is contained in:
DarthArgus
2016-02-18 23:40:34 -06:00
parent 3c50042abc
commit ad8f6d5a99
+1 -1
View File
@@ -130,7 +130,7 @@ public:
// ********************************************************
ByteQueue::ByteQueue(unsigned int m_nodeSize)
: m_nodeSize(m_nodeSize), m_lazyLength(0)
: m_nodeSize(0), m_lazyLength(0)
{
m_head = m_tail = new ByteQueueNode(m_nodeSize);
}