Skip to content

Commit a843a86

Browse files
carusogabrielcmb69
authored andcommitted
Fixed bug #75799 (arg of get_defined_functions is optional)
1 parent fd30c59 commit a843a86

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

NEWS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ PHP NEWS
66
. Fixed bug #75679 (Path 260 character problem). (Anatol)
77
. Fixed bug #75786 (segfault when using spread operator on generator passed
88
by reference). (Nikita)
9+
. Fixed bug #75799 (arg of get_defined_functions is optional). (carusogabriel)
910

1011
- Opcache:
1112
. Fixed bug #75720 (File cache not populated after SHM runs full). (Dmitry)

Zend/zend_builtin_functions.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_set_exception_handler, 0, 0, 1)
220220
ZEND_ARG_INFO(0, exception_handler)
221221
ZEND_END_ARG_INFO()
222222

223-
ZEND_BEGIN_ARG_INFO_EX(arginfo_get_defined_functions, 0, 0, 1)
223+
ZEND_BEGIN_ARG_INFO_EX(arginfo_get_defined_functions, 0, 0, 0)
224224
ZEND_ARG_INFO(0, exclude_disabled)
225225
ZEND_END_ARG_INFO()
226226

0 commit comments

Comments
 (0)