coverity#707936 Uninitialized pointer field
Change-Id: I0ae177349408fd49832056fbc4c300e8e77b2417
This commit is contained in:
@@ -117,10 +117,15 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
OTextInputStream::OTextInputStream()
|
OTextInputStream::OTextInputStream()
|
||||||
: mSeqSource( READ_BYTE_COUNT ), mpBuffer( NULL ), mnBufferSize( 0 )
|
: mbEncodingInitialized(false)
|
||||||
, mnCharsInBuffer( 0 ), mbReachedEOF( sal_False )
|
, mConvText2Unicode(NULL)
|
||||||
|
, mContextText2Unicode(NULL)
|
||||||
|
, mSeqSource(READ_BYTE_COUNT)
|
||||||
|
, mpBuffer(NULL)
|
||||||
|
, mnBufferSize(0)
|
||||||
|
, mnCharsInBuffer(0)
|
||||||
|
, mbReachedEOF(sal_False)
|
||||||
{
|
{
|
||||||
mbEncodingInitialized = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
OTextInputStream::~OTextInputStream()
|
OTextInputStream::~OTextInputStream()
|
||||||
|
Reference in New Issue
Block a user