diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-10-19 15:24:29 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-10-19 15:33:03 +0200 |
commit | 9426c6e9679e60665f7ed95bccc1e8bc6ce74b2f (patch) | |
tree | 4d1f8e5e33e9bc254cd6bb1257357289eed1f03d /ext/standard/basic_functions.h | |
parent | d1845ac008c195248359f73a7b4fd31c1793ed41 (diff) | |
download | php-git-9426c6e9679e60665f7ed95bccc1e8bc6ce74b2f.tar.gz |
Don't use global for array_walk_fci
There's really no good reason for this to be a global, we can
easily pass it down to php_array_walk().
Diffstat (limited to 'ext/standard/basic_functions.h')
-rw-r--r-- | ext/standard/basic_functions.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/standard/basic_functions.h b/ext/standard/basic_functions.h index 97faf50fd9..34b2570175 100644 --- a/ext/standard/basic_functions.h +++ b/ext/standard/basic_functions.h @@ -66,8 +66,6 @@ typedef struct _php_basic_globals { char *strtok_last; char strtok_table[256]; size_t strtok_len; - zend_fcall_info array_walk_fci; - zend_fcall_info_cache array_walk_fci_cache; zend_fcall_info user_compare_fci; zend_fcall_info_cache user_compare_fci_cache; zend_llist *user_tick_functions; |