[Libreoffice-commits] core.git: Branch 'libreoffice-7-0' - package/source

Luboš Luňák (via logerrit) logerrit at kemper.freedesktop.org
Thu Jul 16 14:58:51 UTC 2020


 package/source/zipapi/ZipOutputEntry.cxx |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 14ca32ec6e0ee7fdb1d70d7db52b532e571ebd5d
Author:     Luboš Luňák <l.lunak at collabora.com>
AuthorDate: Thu Jul 16 10:47:18 2020 +0200
Commit:     Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Thu Jul 16 16:58:18 2020 +0200

    properly finish encrypting when parallel zip saving (tdf#134796)
    
    More fixing of 353d4528b8ad8ab, that I didn't get quite right
    in 08161f853571e3. There must be one final processDeflated()
    call that has isDeflaterFinished() return true, so that
    encrypting is finalized properly.
    
    Change-Id: Id15190cc467a801ccc57e1efe802cdd8fc618a71
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98878
    Tested-by: Luboš Luňák <l.lunak at collabora.com>
    Reviewed-by: Luboš Luňák <l.lunak at collabora.com>
    (cherry picked from commit b3c4ca3439eea5f81f3e5a98830829fa20c22823)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98837
    Tested-by: Jenkins
    Reviewed-by: Xisco Fauli <xiscofauli at libreoffice.org>

diff --git a/package/source/zipapi/ZipOutputEntry.cxx b/package/source/zipapi/ZipOutputEntry.cxx
index c9a4943cbe19..31c4bbbf8c8a 100644
--- a/package/source/zipapi/ZipOutputEntry.cxx
+++ b/package/source/zipapi/ZipOutputEntry.cxx
@@ -374,6 +374,8 @@ void ZipOutputEntryParallel::writeStream(const uno::Reference< io::XInputStream
                 processDeflated(rBuffer, nLen);
             }
     );
+    finished = true;
+    processDeflated( uno::Sequence< sal_Int8 >(), 0 ); // finish encrypting, etc.
     totalIn = deflater.getTotalIn();
     totalOut = deflater.getTotalOut();
     closeEntry();


More information about the Libreoffice-commits mailing list