diff options
-rw-r--r-- | oox/source/ole/vbaexport.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/oox/source/ole/vbaexport.cxx b/oox/source/ole/vbaexport.cxx index 904fbf9dd0fa..ea364bcdd082 100644 --- a/oox/source/ole/vbaexport.cxx +++ b/oox/source/ole/vbaexport.cxx @@ -297,6 +297,7 @@ void VBACompression::write() { sal_Size nChunkSize = nRemainingSize > 4096 ? 4096 : nRemainingSize; VBACompressionChunk aChunk(mrCompressedStream, &pData[nSize - nRemainingSize], nChunkSize); + aChunk.write(); // update the uncompressed chunk start marker nRemainingSize -= nChunkSize; |