Kaydet (Commit) 45ccb2c8 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1323913 Uninitialized pointer field

Change-Id: Ibcaac09b90f5f2bfa466b94dbb91bb75ae32e7ff
üst 70c1cf03
...@@ -62,10 +62,15 @@ void exportUTF16String(SvStream& rStrm, const OUString& rString) ...@@ -62,10 +62,15 @@ void exportUTF16String(SvStream& rStrm, const OUString& rString)
} }
VBACompressionChunk::VBACompressionChunk(SvStream& rCompressedStream, const sal_uInt8* pData, sal_Size nChunkSize): VBACompressionChunk::VBACompressionChunk(SvStream& rCompressedStream, const sal_uInt8* pData, sal_Size nChunkSize)
mrCompressedStream(rCompressedStream), : mrCompressedStream(rCompressedStream)
mpUncompressedData(pData), , mpUncompressedData(pData)
mnChunkSize(nChunkSize) , mpCompressedChunkStream(0)
, mnChunkSize(nChunkSize)
, mnCompressedCurrent(0)
, mnCompressedEnd(0)
, mnDecompressedCurrent(0)
, mnDecompressedEnd(0)
{ {
} }
......
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