coverity#707832 Uninitialized scalar field

Change-Id: I49220146ea83b04371d80f94dbf1405b0a7aea9d
This commit is contained in:
Caolán McNamara
2014-04-23 11:34:36 +01:00
parent a22ca0f7e0
commit 5de69f0ff2

View File

@@ -570,9 +570,14 @@ CCIDecompressor::CCIDecompressor( sal_uLong nOpts, sal_uInt32 nImageWidth ) :
bStatus ( false ),
pByteSwap ( NULL ),
pIStream ( NULL ),
nEOLCount ( 0 ),
nWidth ( nImageWidth ),
nOptions ( nOpts ),
pLastLine ( NULL )
bFirstEOL ( false ),
nInputBitsBuf( 0 ),
nInputBitsBufSize( 0 ),
pLastLine ( NULL ),
nLastLineSize( 0 )
{
if ( nOpts & CCI_OPTION_INVERSEBITORDER )
{