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

coverity#707936 Uninitialized pointer field

Change-Id: I0ae177349408fd49832056fbc4c300e8e77b2417
üst aabee84e
......@@ -117,10 +117,15 @@ public:
};
OTextInputStream::OTextInputStream()
: mSeqSource( READ_BYTE_COUNT ), mpBuffer( NULL ), mnBufferSize( 0 )
, mnCharsInBuffer( 0 ), mbReachedEOF( sal_False )
: mbEncodingInitialized(false)
, mConvText2Unicode(NULL)
, mContextText2Unicode(NULL)
, mSeqSource(READ_BYTE_COUNT)
, mpBuffer(NULL)
, mnBufferSize(0)
, mnCharsInBuffer(0)
, mbReachedEOF(sal_False)
{
mbEncodingInitialized = false;
}
OTextInputStream::~OTextInputStream()
......
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