Kaydet (Commit) 00715826 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#707939 Uninitialized scalar field

Change-Id: I5cbb4e2fef4361085840c914e26bb494566a4600
üst 3debbdf8
...@@ -147,10 +147,11 @@ private: ...@@ -147,10 +147,11 @@ private:
}; };
OMarkableOutputStream::OMarkableOutputStream( ) OMarkableOutputStream::OMarkableOutputStream( )
: m_bValidStream(false)
, m_nCurrentPos(0)
, m_nCurrentMark(0)
{ {
m_pBuffer = new MemRingBuffer; m_pBuffer = new MemRingBuffer;
m_nCurrentPos = 0;
m_nCurrentMark = 0;
} }
OMarkableOutputStream::~OMarkableOutputStream() OMarkableOutputStream::~OMarkableOutputStream()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment