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

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