[arch-commits] Commit in unzip/trunk (PKGBUILD csiz-underflow.patch)

Lukas Fleischer lfleischer at archlinux.org
Sun Apr 17 06:58:57 UTC 2016


    Date: Sunday, April 17, 2016 @ 08:58:57
  Author: lfleischer
Revision: 265081

upgpkg: unzip 6.0-12

Fix 0-byte file regression (fixes FS#47039).

Modified:
  unzip/trunk/PKGBUILD
  unzip/trunk/csiz-underflow.patch

----------------------+
 PKGBUILD             |    8 ++++----
 csiz-underflow.patch |    2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2016-04-17 01:04:21 UTC (rev 265080)
+++ PKGBUILD	2016-04-17 06:58:57 UTC (rev 265081)
@@ -1,5 +1,5 @@
-# $Id$
-# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+# Maintainer: Lukas Fleischer <lfleischer at archlinux.org>
+# Contributor: Gaetan Bisson <bisson at archlinux.org>
 # Contributor: Douglas Soares de Andrade <douglas at archlinux.org>
 # Contributor: Robson Peixoto
 
@@ -6,7 +6,7 @@
 pkgname=unzip
 pkgver=6.0
 _pkgver=${pkgver/./}
-pkgrel=11
+pkgrel=12
 pkgdesc='For extracting and viewing files in .zip archives'
 url='http://www.info-zip.org/UnZip.html'
 arch=('i686' 'x86_64')
@@ -28,7 +28,7 @@
           '691d0751bf0bc98cf9f9889dee39baccabefdc4d'
           '82c9fe9172779a0ee92a187d544e74e8f512b013'
           '4f77b01454fd2ffa69bfad985bfbdc579ee26010'
-          '9f86b1115c76e527ff7a2c3771d398f024533cf9'
+          'dccc6d6a5aed0098031bbd7cc4275ab9b10a2177'
           'b325fac556abf169264ed5ae364b9136016e43f3')
 
 prepare() {

Modified: csiz-underflow.patch
===================================================================
--- csiz-underflow.patch	2016-04-17 01:04:21 UTC (rev 265080)
+++ csiz-underflow.patch	2016-04-17 06:58:57 UTC (rev 265081)
@@ -17,7 +17,7 @@
  
 -            if (G.pInfo->encrypted)
 +            if (G.pInfo->encrypted) {
-+                if (csiz_decrypted <= 12) {
++                if (csiz_decrypted < 12) {
 +                    /* handle the error now to prevent unsigned overflow */
 +                    Info(slide, 0x401, ((char *)slide,
 +                      LoadFarStringSmall(ErrUnzipNoFile),



More information about the arch-commits mailing list