Blame SOURCES/unzip-6.0-cve-2014-8140.patch

623fdc
diff --git a/extract.c b/extract.c
623fdc
index c741b5f..e4a4c7b 100644
623fdc
--- a/extract.c
623fdc
+++ b/extract.c
623fdc
@@ -2240,10 +2240,17 @@ static int test_compr_eb(__G__ eb, eb_size, compr_offset, test_uc_ebdata)
623fdc
     if (compr_offset < 4)                /* field is not compressed: */
623fdc
         return PK_OK;                    /* do nothing and signal OK */
623fdc
 
623fdc
+    /* Return no/bad-data error status if any problem is found:
623fdc
+     *    1. eb_size is too small to hold the uncompressed size
623fdc
+     *       (eb_ucsize).  (Else extract eb_ucsize.)
623fdc
+     *    2. eb_ucsize is zero (invalid).  2014-12-04 SMS.
623fdc
+     *    3. eb_ucsize is positive, but eb_size is too small to hold
623fdc
+     *       the compressed data header.
623fdc
+     */
623fdc
     if ((eb_size < (EB_UCSIZE_P + 4)) ||
623fdc
-        ((eb_ucsize = makelong(eb+(EB_HEADSIZE+EB_UCSIZE_P))) > 0L &&
623fdc
-         eb_size <= (compr_offset + EB_CMPRHEADLEN)))
623fdc
-        return IZ_EF_TRUNC;               /* no compressed data! */
623fdc
+     ((eb_ucsize = makelong( eb+ (EB_HEADSIZE+ EB_UCSIZE_P))) == 0L) ||
623fdc
+     ((eb_ucsize > 0L) && (eb_size <= (compr_offset + EB_CMPRHEADLEN))))
623fdc
+        return IZ_EF_TRUNC;             /* no/bad compressed data! */
623fdc
 
623fdc
     method = makeword(eb + (EB_HEADSIZE + compr_offset));
623fdc
     if ((method == STORED) && (eb_size != compr_offset + EB_CMPRHEADLEN + eb_ucsize))