Kaydet (Commit) 3037f4d9 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708312 Uninitialized pointer field

Change-Id: I3bb28d1116e155f819b0e920a3c355b00e892c2a
üst d1a8a119
...@@ -27,12 +27,15 @@ struct GIFLZWTableEntry ...@@ -27,12 +27,15 @@ struct GIFLZWTableEntry
sal_uInt8 nData; sal_uInt8 nData;
}; };
GIFLZWDecompressor::GIFLZWDecompressor( sal_uInt8 cDataSize ) : GIFLZWDecompressor::GIFLZWDecompressor(sal_uInt8 cDataSize)
nInputBitsBuf ( 0 ), : pBlockBuf(NULL)
nOutBufDataLen ( 0 ), , nInputBitsBuf(0)
nInputBitsBufSize ( 0 ), , nOutBufDataLen(0)
bEOIFound ( false ), , nInputBitsBufSize(0)
nDataSize ( cDataSize ) , bEOIFound(false)
, nDataSize(cDataSize)
, nBlockBufSize(0)
, nBlockBufPos(0)
{ {
pOutBuf = new sal_uInt8[ 4096 ]; pOutBuf = new sal_uInt8[ 4096 ];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment