From 969a883bb4e40fbd79a2ef10b03188425fdc5b02 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 20 Dec 2013 19:17:38 +0100 Subject: php 5.5: test build for https://bugs.php.net/66331 --- php-wip.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 php-wip.patch (limited to 'php-wip.patch') diff --git a/php-wip.patch b/php-wip.patch new file mode 100644 index 0000000..7908956 --- /dev/null +++ b/php-wip.patch @@ -0,0 +1,12 @@ +diff -up Zend/zend_compile.c.old Zend/zend_compile.c +--- Zend/zend_compile.c.old 2013-12-20 18:54:27.817018413 +0100 ++++ Zend/zend_compile.c 2013-12-20 18:54:37.015050252 +0100 +@@ -3209,7 +3209,7 @@ static zend_bool zend_do_perform_impleme + } + + /* by-ref constraints on arguments are invariant */ +- if (fe->common.arg_info[i].pass_by_reference != proto->common.arg_info[i].pass_by_reference) { ++ if ((fe->common.arg_info[i].pass_by_reference>0) != (proto->common.arg_info[i].pass_by_reference>0)) { + return 0; + } + } -- cgit