[Libreoffice-commits] .: Branch 'libreoffice-3-4' - package/source

Thorsten Behrens thorsten at kemper.freedesktop.org
Mon Dec 19 02:47:07 PST 2011


 package/source/zipapi/ZipFile.cxx |    8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

New commits:
commit e9fe4cbed27c750a40858ce532742b65ef441cb3
Author: Thorsten Behrens <tbehrens at suse.com>
Date:   Mon Dec 19 11:45:26 2011 +0100

    Revert "Fix n#653688"
    
    This reverts commit 4481a2fd1a40b27c1f8e784517b79fcc3c3ca196.
    
    Broke password-protected odf document reading.
    
    Signed-off-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/package/source/zipapi/ZipFile.cxx b/package/source/zipapi/ZipFile.cxx
index 03a0108..fb56c28 100644
--- a/package/source/zipapi/ZipFile.cxx
+++ b/package/source/zipapi/ZipFile.cxx
@@ -802,7 +802,7 @@ sal_Bool ZipFile::readLOC( ZipEntry &rEntry )
 
         // the method can be reset for internal use so it is not checked
         bBroken = rEntry.nVersion != nVersion
-                        || rEntry.nMethod != nHow
+                        || rEntry.nFlag != nFlag
                         || rEntry.nTime != nTime
                         || rEntry.nPathLen != nPathLen
                         || !rEntry.sPath.equals( sLOCPath );
@@ -812,12 +812,6 @@ sal_Bool ZipFile::readLOC( ZipEntry &rEntry )
         bBroken = sal_True;
     }
 
-    // ignore bits 1 & 2 for normal deflate algo - they're purely informative
-    if( nHow != 8 && nHow != 9 )
-        bBroken = bBroken || rEntry.nFlag != nFlag;
-    else if( (rEntry.nFlag & ~6L) != (nFlag & ~6L) )
-        bBroken = true;
-
     if ( bBroken && !bRecoveryMode )
         throw ZipIOException( OUString( RTL_CONSTASCII_USTRINGPARAM( "The stream seems to be broken!" ) ),
                             Reference< XInterface >() );


More information about the Libreoffice-commits mailing list