package: clarify comment

Change-Id: Id1a262dee4bd182c0aa3f938efb3808e3182602d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171834
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
This commit is contained in:
Michael Stahl
2024-08-13 17:59:18 +02:00
parent b8374587db
commit cf23025faa

View File

@@ -1015,7 +1015,10 @@ sal_uInt64 ZipFile::readLOC(ZipEntry &rEntry)
if ((rEntry.nFlag & 0x08) != 0)
{
#if 0
if (nLocMethod == STORED) // example: fdo68983.odt has this :(
// Unfortunately every encrypted ODF package entry hits this,
// because ODF requires deflated entry with value STORED and OOo/LO
// has always written compressed streams with data descriptor.
if (nLocMethod == STORED)
{
SAL_INFO("package", "LOC STORED with data descriptor: \"" << rEntry.sPath << "\"");
bBroken = true;