coverity#707936 Uninitialized pointer field
Change-Id: I0ae177349408fd49832056fbc4c300e8e77b2417
This commit is contained in:
parent
aabee84e8c
commit
51f85041ef
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user