summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
Diffstat (limited to 'package')
-rw-r--r--package/source/zippackage/ZipPackageStream.cxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/package/source/zippackage/ZipPackageStream.cxx b/package/source/zippackage/ZipPackageStream.cxx
index 5fe4d0ef80c5..5e62b8bf1aff 100644
--- a/package/source/zippackage/ZipPackageStream.cxx
+++ b/package/source/zippackage/ZipPackageStream.cxx
@@ -727,10 +727,9 @@ bool ZipPackageStream::saveChild(
if ( m_bRawStream )
xStream->skipBytes( m_nMagicalHackPos );
- ZipOutputStream::setEntry(pTempEntry);
- rZipOut.writeLOC(pTempEntry);
// the entry is provided to the ZipOutputStream that will delete it
- pAutoTempEntry.release();
+ ZipOutputStream::setEntry(pAutoTempEntry.release());
+ rZipOut.writeLOC(pTempEntry);
uno::Sequence < sal_Int8 > aSeq ( n_ConstBufferSize );
sal_Int32 nLength;
@@ -797,9 +796,8 @@ bool ZipPackageStream::saveChild(
try
{
- ZipOutputStream::setEntry(pTempEntry);
// the entry is provided to the ZipOutputStream that will delete it
- pAutoTempEntry.release();
+ ZipOutputStream::setEntry(pAutoTempEntry.release());
if (pTempEntry->nMethod == STORED)
{