diff options
-rw-r--r-- | io/source/TextInputStream/TextInputStream.cxx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/io/source/TextInputStream/TextInputStream.cxx b/io/source/TextInputStream/TextInputStream.cxx index 3485877a0cb3..b94c24dd149f 100644 --- a/io/source/TextInputStream/TextInputStream.cxx +++ b/io/source/TextInputStream/TextInputStream.cxx @@ -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() |