Skip to content

Commit

Permalink
Fixed bug #75799 (arg of get_defined_functions is optional)
Browse files Browse the repository at this point in the history
  • Loading branch information
carusogabriel authored and cmb69 committed Jan 11, 2018
1 parent fd30c59 commit a843a86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Zend/zend_builtin_functions.c
Expand Up @@ -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()

Expand Down

0 comments on commit a843a86

Please sign in to comment.