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

Luboš Luňák (via logerrit) logerrit at kemper.freedesktop.org
Wed Jul 29 18:18:29 UTC 2020


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

New commits:
commit a186249dc1099508add06d5f0e820c5ba66a6a2e
Author:     Luboš Luňák <l.lunak at collabora.com>
AuthorDate: Thu Jul 16 10:47:18 2020 +0200
Commit:     Christian Lohmaier <lohmaier+LibreOffice at googlemail.com>
CommitDate: Wed Jul 29 20:17:57 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>
    (cherry picked from commit 14ca32ec6e0ee7fdb1d70d7db52b532e571ebd5d)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98842
    Reviewed-by: Adolfo Jayme Barrientos <fitojb at ubuntu.com>
    Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice at googlemail.com>
    Tested-by: Christian Lohmaier <lohmaier+LibreOffice at googlemail.com>

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