diff options
author | Dmitry Stogov <dmitry@zend.com> | 2017-12-27 15:15:03 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2017-12-27 15:15:03 +0300 |
commit | d9f5ea691fef7686061e081034bd52c9cc1db444 (patch) | |
tree | b9097a3113992e415791daba84728014491edf1e /ext/spl/spl_directory.c | |
parent | a6fcbb7c8709d20a471d81839e320693f7636a34 (diff) | |
download | php-git-d9f5ea691fef7686061e081034bd52c9cc1db444.tar.gz |
zend_fcall_info_cache.initialized is removed (zend_fcall_info_cache is initialized if zend_fcall_info_cache.function_handler is set).
Diffstat (limited to 'ext/spl/spl_directory.c')
-rw-r--r-- | ext/spl/spl_directory.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/spl/spl_directory.c b/ext/spl/spl_directory.c index 4a012d74ea..be72c75746 100644 --- a/ext/spl/spl_directory.c +++ b/ext/spl/spl_directory.c @@ -2082,7 +2082,6 @@ static int spl_filesystem_file_call(spl_filesystem_object *intern, zend_function fci.no_separation = 1; ZVAL_STR(&fci.function_name, func_ptr->common.function_name); - fcic.initialized = 1; fcic.function_handler = func_ptr; fcic.calling_scope = NULL; fcic.called_scope = NULL; |