]> granicus.if.org Git - php/commitdiff
Fixed bug #75799 (arg of get_defined_functions is optional)
authorGabriel Caruso <carusogabriel34@gmail.com>
Wed, 10 Jan 2018 21:49:13 +0000 (19:49 -0200)
committerChristoph M. Becker <cmbecker69@gmx.de>
Thu, 11 Jan 2018 12:10:47 +0000 (13:10 +0100)
NEWS
Zend/zend_builtin_functions.c

diff --git a/NEWS b/NEWS
index 8414fcd79a9d35aae586b30bf6177c884170afee..4889178d26ed095aac2d09677b7eb6b19ef546ab 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,7 @@ PHP                                                                        NEWS
   . Fixed bug #75679 (Path 260 character problem). (Anatol)
   . Fixed bug #75786 (segfault when using spread operator on generator passed
     by reference). (Nikita)
+  . Fixed bug #75799 (arg of get_defined_functions is optional). (carusogabriel)
 
 - Opcache:
   . Fixed bug #75720 (File cache not populated after SHM runs full). (Dmitry)
index 5be7ebea89fb7262b6841a089a6be9e82d55e159..184b352ec83b24097a9033f8001abae1a3b56846 100644 (file)
@@ -220,7 +220,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_set_exception_handler, 0, 0, 1)
        ZEND_ARG_INFO(0, exception_handler)
 ZEND_END_ARG_INFO()
 
-ZEND_BEGIN_ARG_INFO_EX(arginfo_get_defined_functions, 0, 0, 1)
+ZEND_BEGIN_ARG_INFO_EX(arginfo_get_defined_functions, 0, 0, 0)
        ZEND_ARG_INFO(0, exclude_disabled)
 ZEND_END_ARG_INFO()