From d6a1390ea41e344bdfa2ae092ed6b7bf08db1ded Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 11 Jun 2015 16:53:50 +0200 Subject: php55-php-extras: 5.5.21 (rhscl 2.0) --- php-5.4.16-mcrypt.patch | 40 ---------------------------------------- php-extras.spec | 10 +++++----- 2 files changed, 5 insertions(+), 45 deletions(-) delete mode 100644 php-5.4.16-mcrypt.patch diff --git a/php-5.4.16-mcrypt.patch b/php-5.4.16-mcrypt.patch deleted file mode 100644 index 3158c70..0000000 --- a/php-5.4.16-mcrypt.patch +++ /dev/null @@ -1,40 +0,0 @@ -From dd791cd71742fdb9b87b7166537fbb25bd7cd8b9 Mon Sep 17 00:00:00 2001 -From: Dmitry Stogov -Date: Mon, 8 Dec 2014 12:18:27 +0300 -Subject: [PATCH] Fixed possible read after end of buffer and use after free. - ---- - ext/mcrypt/mcrypt.c | 8 ++++++-- - 1 file changed, 6 insertions(+), 2 deletions(-) - -diff --git a/ext/mcrypt/mcrypt.c b/ext/mcrypt/mcrypt.c -index 55302c7..7f463cf 100644 ---- a/ext/mcrypt/mcrypt.c -+++ b/ext/mcrypt/mcrypt.c -@@ -619,8 +619,11 @@ PHP_FUNCTION(mcrypt_generic_init) - - if (iv_len != iv_size) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Iv size incorrect; supplied length: %d, needed: %d", iv_len, iv_size); -+ if (iv_len > iv_size) { -+ iv_len = iv_size; -+ } - } -- memcpy(iv_s, iv, iv_size); -+ memcpy(iv_s, iv, iv_len); - - mcrypt_generic_deinit(pm->td); - result = mcrypt_generic_init(pm->td, key_s, key_size, iv_s); -@@ -641,8 +644,9 @@ PHP_FUNCTION(mcrypt_generic_init) - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown error"); - break; - } -+ } else { -+ pm->init = 1; - } -- pm->init = 1; - RETVAL_LONG(result); - - efree(iv_s); --- -2.1.4 - diff --git a/php-extras.spec b/php-extras.spec index 38048ea..635041b 100644 --- a/php-extras.spec +++ b/php-extras.spec @@ -29,8 +29,8 @@ Name: %{?scl_prefix}php-extras Summary: Additional PHP modules from the standard PHP distribution -Version: 5.5.6 -Release: 3%{?dist} +Version: 5.5.21 +Release: 1%{?dist} Group: Development/Languages License: The PHP License URL: http://www.php.net/ @@ -38,7 +38,6 @@ URL: http://www.php.net/ Source0: php-%{version}-strip.tar.xz # Security patches -Patch0: php-5.4.16-mcrypt.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: %{?scl_prefix}php-devel >= %{version} @@ -162,8 +161,6 @@ messages on mail servers. PHP is an HTML-embedded scripting language. %prep %setup -q -n php-%{version} -%patch0 -p1 -b .security - # avoid tests which requires databases rm -rf ext/{mssql,pdo_dblib,interbase,pdo_firebird}/tests @@ -251,6 +248,9 @@ rm -rf %{buildroot} %changelog +* Thu Jun 11 2015 Remi Collet - 5.5.21-1 +- update to 5.5.21 (rhscl 2.0) + * Fri Feb 13 2015 Remi Collet - 5.5.6-3 - mcrypt upstream security fix -- cgit