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

This commit is contained in:
DarthArgus
2016-02-18 23:40:07 -06:00
parent 877d0a9b62
commit 9393e6e7af
+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);
}