coverity#707936 Uninitialized pointer field

Change-Id: I0ae177349408fd49832056fbc4c300e8e77b2417
This commit is contained in:
Caolán McNamara 2014-03-12 10:44:07 +00:00
parent aabee84e8c
commit 51f85041ef

View File

@ -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()