]> granicus.if.org Git - php/commitdiff
Reverted the BC fix regarding to #57905, test adopted
authorAnatoliy Belsky <ab@php.net>
Sun, 17 Jun 2012 14:04:36 +0000 (16:04 +0200)
committerAnatoliy Belsky <ab@php.net>
Sun, 17 Jun 2012 14:04:36 +0000 (16:04 +0200)
New 0.10.1 has a stronger archive integrity check. Restoring
the old behaviour of libzip < 0.10.1 makes no sense at this
place.

ext/zip/lib/zip_open.c
ext/zip/tests/pecl12414.phpt

index a348d9800dd889a4332350fff59b63c2db6e3881..2f56881b0a9d2ceeba4c46cf4f11cd1a2f1d07d4 100644 (file)
@@ -206,9 +206,7 @@ _zip_readcdir(FILE *fp, off_t buf_offset, unsigned char *buf, unsigned char *eoc
     cd->comment = NULL;
     cd->comment_len = _zip_read2(&cdp);
 
-       /* without checking the ZIP_CHECKCONS flag we'll not able even to open inconsistent
-          archives at this place, which would break bc in PHP */
-    if ((ZIP_CHECKCONS == (flags & ZIP_CHECKCONS)) && ((zip_uint64_t)cd->offset)+cd->size > buf_offset + (eocd-buf)) {
+    if (((zip_uint64_t)cd->offset)+cd->size > buf_offset + (eocd-buf)) {
        /* cdir spans past EOCD record */
        _zip_error_set(error, ZIP_ER_INCONS, 0);
        cd->nentry = 0;
@@ -239,13 +237,7 @@ _zip_readcdir(FILE *fp, off_t buf_offset, unsigned char *buf, unsigned char *eoc
        }
     }
 
-       /* the first if branch goes the old way of libzip 0.9 so we don't loose 
-          the bc for reading inconsistent files */
-       if ((ZIP_CHECKCONS != (flags & ZIP_CHECKCONS)) && cd->size < (unsigned int)(eocd-buf)) {
-       cdp = eocd - cd->size;
-       bufp = &cdp;
-       }
-       else if (cd->offset >= buf_offset) {
+    if (cd->offset >= buf_offset) {
        /* if buffer already read in, use it */
        cdp = buf + (cd->offset - buf_offset);
        bufp = &cdp;
index ab11d21a637c665fae35da8f4d8151eb983198bd..61546386ab7eef84fd8dad9c5444ee9c5eb0eec6 100644 (file)
@@ -35,5 +35,4 @@ if ($res === TRUE) {
 ?>
 --DONE--
 --EXPECTF--
-ZIP contents size: %d
-zip_readfile recorded data does not match unpacked size: %specl12414.zip : MYLOGOV2.GFX
+zip_readfile could not read from %specl12414.zip : MYLOGOV2.GFX