From 9393e6e7af604f905daaf5c02b4b5f9fb5e85e52 Mon Sep 17 00:00:00 2001 From: DarthArgus Date: Thu, 18 Feb 2016 23:40:07 -0600 Subject: [PATCH] another flint detected issue - init to 0 instead of with ourselves --- external/ours/library/crypto/src/shared/original/queue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/ours/library/crypto/src/shared/original/queue.cpp b/external/ours/library/crypto/src/shared/original/queue.cpp index 2fb3250a..9ce378de 100755 --- a/external/ours/library/crypto/src/shared/original/queue.cpp +++ b/external/ours/library/crypto/src/shared/original/queue.cpp @@ -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); }