Fix bug #67938: Segfault when extending interface method with variadic
authorNikita Popov <nikic@php.net>
Sat, 30 Aug 2014 18:41:36 +0000 (20:41 +0200)
committerNikita Popov <nikic@php.net>
Sat, 30 Aug 2014 18:43:34 +0000 (20:43 +0200)
We only want to check extra optional args if the proto function is
variadic, not when we're adding extra variadic args.

NEWS
Zend/tests/bug67938.phpt [new file with mode: 0644]
Zend/zend_compile.c

diff --git a/NEWS b/NEWS
index 5473aba2e18280c6e31eba6fff271329291cbe10..f6e116db944b0c6f2b807b817286ded7f5a4d934 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,8 @@ PHP                                                                        NEWS
 
 - Core:
   . Fixed bug #67878 (program_prefix not honoured in man pages). (Remi)
+  . Fixed bug #67938 (Segfault when extending interface method with variadic).
+    (Nikita)
 
 - Fileinfo:
   . Fixed bug #67731 (finfo::file() returns invalid mime type
@@ -15,7 +17,7 @@ PHP                                                                        NEWS
 
 - GMP:
   . Fixed bug #67917 (Using GMP objects with overloaded operators can cause
-    memory exhaustion). (Nikita Popov)
+    memory exhaustion). (Nikita)
 
 - MySQLi:
   . Fixed bug #67839 (mysqli does not handle 4-byte floats correctly). (Keyur)
diff --git a/Zend/tests/bug67938.phpt b/Zend/tests/bug67938.phpt
new file mode 100644 (file)
index 0000000..6597c48
--- /dev/null
@@ -0,0 +1,27 @@
+--TEST--
+Bug #67938: Segfault when extending interface method with variadic
+--FILE--
+<?php
+
+interface TestInterface {
+    public function foo();
+    public function bar(array $bar);
+}
+
+class Test implements TestInterface {
+    public function foo(...$args) {
+        echo __METHOD__, "\n";
+    }
+    public function bar(array $bar, ...$args) {
+        echo __METHOD__, "\n";
+    }
+}
+
+$obj = new Test;
+$obj->foo();
+$obj->bar([]);
+
+?>
+--EXPECT--
+Test::foo
+Test::bar
index 7c979d56b773833034d97241eb8475ab6ab36960..54b01a845b5598e5861270ea61aedae75df8cdb0 100644 (file)
@@ -3258,7 +3258,7 @@ static zend_bool zend_do_perform_implementation_check(const zend_function *fe, c
         * go through all the parameters of the function and not just those present in the
         * prototype. */
        num_args = proto->common.num_args;
-       if ((fe->common.fn_flags & ZEND_ACC_VARIADIC)
+       if ((proto->common.fn_flags & ZEND_ACC_VARIADIC)
                && fe->common.num_args > proto->common.num_args) {
                num_args = fe->common.num_args;
        }