summaryrefslogtreecommitdiff
path: root/ext/standard/basic_functions.h
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-10-19 15:24:29 +0200
committerNikita Popov <nikita.ppv@gmail.com>2020-10-19 15:33:03 +0200
commit9426c6e9679e60665f7ed95bccc1e8bc6ce74b2f (patch)
tree4d1f8e5e33e9bc254cd6bb1257357289eed1f03d /ext/standard/basic_functions.h
parentd1845ac008c195248359f73a7b4fd31c1793ed41 (diff)
downloadphp-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.h2
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;