From 9ded9771764b9ca5b9a538c63a3138a7d4aca467 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Jul 20 2016 14:40:17 +0000 Subject: - Update to 7.0.9 - http://www.php.net/releases/7_0_9.php - wddx: add upstream patch for https://bugs.php.net/72564 --- diff --git a/.gitignore b/.gitignore index 5e4ae63..fabff91 100644 --- a/.gitignore +++ b/.gitignore @@ -76,3 +76,4 @@ php-5.5.*.xz /php-5.6.23-strip.tar.xz /php-7.0.8.tar.xz /php-7.0.9RC1.tar.xz +/php-7.0.9.tar.xz diff --git a/bug72564.patch b/bug72564.patch new file mode 100644 index 0000000..4d7e5c1 --- /dev/null +++ b/bug72564.patch @@ -0,0 +1,67 @@ +From 99d6e09c3d6679bb522836c833d0cfd4f79c6014 Mon Sep 17 00:00:00 2001 +From: Remi Collet +Date: Fri, 8 Jul 2016 10:46:33 +0200 +Subject: [PATCH] Fixed Bug #72564 boolean always deserialized as "true" + +--- + ext/wddx/wddx.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/ext/wddx/wddx.c b/ext/wddx/wddx.c +index 2cc3c8b..cb0c01e 100644 +--- a/ext/wddx/wddx.c ++++ b/ext/wddx/wddx.c +@@ -1013,9 +1013,9 @@ static void php_wddx_process_data(void *user_data, const XML_Char *s, int len) + + case ST_BOOLEAN: + if (!strcmp((char *)s, "true")) { +- Z_LVAL(ent->data) = 1; ++ ZVAL_TRUE(&ent->data); + } else if (!strcmp((char *)s, "false")) { +- Z_LVAL(ent->data) = 0; ++ ZVAL_FALSE(&ent->data); + } else { + zval_ptr_dtor(&ent->data); + if (ent->varname) { +-- +2.1.4 + +From bfc42211d3cc5aa6cd2bdb10ef5004ce22099acb Mon Sep 17 00:00:00 2001 +From: Remi Collet +Date: Fri, 8 Jul 2016 10:45:13 +0200 +Subject: [PATCH] add test for bug #72564 (7.x regression) + +--- + ext/wddx/tests/bug72564.phpt | 20 ++++++++++++++++++++ + 1 file changed, 20 insertions(+) + create mode 100644 ext/wddx/tests/bug72564.phpt + +diff --git a/ext/wddx/tests/bug72564.phpt b/ext/wddx/tests/bug72564.phpt +new file mode 100644 +index 0000000..4711ef8 +--- /dev/null ++++ b/ext/wddx/tests/bug72564.phpt +@@ -0,0 +1,20 @@ ++--TEST-- ++Bug #72564: wddx deserialization of boolean ++--SKIPIF-- ++ ++--FILE-- ++ ++Done ++--EXPECT-- ++string(84) "
" ++bool(true) ++string(85) "
" ++bool(false) ++string(68) "
" ++NULL ++Done +-- +2.1.4 + diff --git a/php.spec b/php.spec index 0aa8a38..53e3fc7 100644 --- a/php.spec +++ b/php.spec @@ -58,7 +58,7 @@ %global db_devel libdb-devel %endif -%global rcver RC1 +#global rcver RC1 %global rpmrel 1 Summary: PHP scripting language for creating dynamic web sites @@ -111,6 +111,7 @@ Patch46: php-7.0.0-fixheader.patch Patch47: php-5.6.3-phpinfo.patch # Upstream fixes (100+) +Patch100: bug72564.patch # Security fixes (200+) @@ -723,6 +724,7 @@ httpd -V | grep -q 'threaded:.*yes' && exit 1 %patch47 -p1 -b .phpinfo # upstream patches +%patch100 -p1 -b .bug72564 # security patches @@ -1496,6 +1498,10 @@ rm -f README.{Zeus,QNX,CVS-RULES} %changelog +* Wed Jul 20 2016 Remi Collet 7.0.9-1 +- Update to 7.0.9 - http://www.php.net/releases/7_0_9.php +- wddx: add upstream patch for https://bugs.php.net/72564 + * Wed Jul 6 2016 Remi Collet 7.0.9-0.1.RC1 - Update to 7.0.9RC1 diff --git a/sources b/sources index a52da51..31906cd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -1751cf169ee173ad38071b42d2805607 php-7.0.9RC1.tar.xz +6294813fb3c8158cfde74302f573cac7 php-7.0.9.tar.xz