Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package php7 for openSUSE:Factory checked in 
at 2022-05-08 21:52:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/php7 (Old)
 and      /work/SRC/openSUSE:Factory/.php7.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "php7"

Sun May  8 21:52:31 2022 rev:115 rq:975375 version:7.4.29

Changes:
--------
--- /work/SRC/openSUSE:Factory/php7/php7.changes        2022-04-23 
00:25:14.639749227 +0200
+++ /work/SRC/openSUSE:Factory/.php7.new.1538/php7.changes      2022-05-08 
21:52:44.267492216 +0200
@@ -1,0 +2,8 @@
+Fri May  6 09:38:30 UTC 2022 - pgaj...@suse.com
+
+- security update [bsc#1197644]
+- added patches
+  fix 
https://github.com/php/php-src/commit/771dbdb319fa7f90584f6b2cc2c54ccff570492d
+  + php7-signedness-php_filter_validate_domain.patch
+
+-------------------------------------------------------------------

New:
----
  php7-signedness-php_filter_validate_domain.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ php7.spec ++++++
--- /var/tmp/diff_new_pack.uTYdNi/_old  2022-05-08 21:52:44.983493118 +0200
+++ /var/tmp/diff_new_pack.uTYdNi/_new  2022-05-08 21:52:44.987493122 +0200
@@ -102,6 +102,8 @@
 Patch19:        php-build-reproducible-phar.patch
 # 
https://github.com/php/php-src/commit/b3646440b1808abf0874b6f89027ce53ec5da03f
 Patch20:        php7-gd-removed-unused-constants.patch
+# 
https://github.com/php/php-src/commit/771dbdb319fa7f90584f6b2cc2c54ccff570492d
+Patch21:        php7-signedness-php_filter_validate_domain.patch
 BuildRequires:  apache-rpm-macros
 BuildRequires:  autoconf
 BuildRequires:  bison
@@ -964,6 +966,7 @@
 %patch17 -p1
 %patch19 -p1
 %patch20 -p1
+%patch21 -p1
 
 # use system pcre2
 rm -r ext/pcre/pcre2lib


++++++ php7-signedness-php_filter_validate_domain.patch ++++++
diff --git a/ext/filter/logical_filters.c b/ext/filter/logical_filters.c
index 95f7a99e34b1..b57473676282 100644
--- a/ext/filter/logical_filters.c
+++ b/ext/filter/logical_filters.c
@@ -496,7 +496,7 @@ void 
php_filter_validate_regexp(PHP_INPUT_FILTER_PARAM_DECL) /* {{{ */
        }
 }
 
-static int _php_filter_validate_domain(char * domain, int len, zend_long 
flags) /* {{{ */
+static int _php_filter_validate_domain(char * domain, size_t len, zend_long 
flags) /* {{{ */
 {
        char *e, *s, *t;
        size_t l;

Reply via email to