diff options
Diffstat (limited to 'ext/opcache/ZendAccelerator.c')
-rw-r--r-- | ext/opcache/ZendAccelerator.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/opcache/ZendAccelerator.c b/ext/opcache/ZendAccelerator.c index ebe7942e7f..4823609ca1 100644 --- a/ext/opcache/ZendAccelerator.c +++ b/ext/opcache/ZendAccelerator.c @@ -1239,7 +1239,7 @@ static int zend_accel_get_auto_globals(void) int mask = 0; for (i = 0; i < ag_size ; i++) { - if (zend_hash_exists(&EG(symbol_table).ht, jit_auto_globals_str[i])) { + if (zend_hash_exists(&EG(symbol_table), jit_auto_globals_str[i])) { mask |= n; } n += n; @@ -1249,7 +1249,7 @@ static int zend_accel_get_auto_globals(void) static int zend_accel_get_auto_globals_no_jit(void) { - if (zend_hash_exists(&EG(symbol_table).ht, jit_auto_globals_str[3])) { + if (zend_hash_exists(&EG(symbol_table), jit_auto_globals_str[3])) { return 8; } return 0; @@ -2002,21 +2002,21 @@ static inline void zend_accel_fast_del_bucket(HashTable *ht, uint32_t idx, Bucke static void zend_accel_fast_shutdown(void) { if (EG(full_tables_cleanup)) { - EG(symbol_table).ht.pDestructor = accel_fast_zval_dtor; + EG(symbol_table).pDestructor = accel_fast_zval_dtor; } else { dtor_func_t old_destructor; if (EG(objects_store).top > 1 || zend_hash_num_elements(&EG(regular_list)) > 0) { /* We don't have to destroy all zvals if they cannot call any destructors */ - old_destructor = EG(symbol_table).ht.pDestructor; - EG(symbol_table).ht.pDestructor = accel_fast_zval_dtor; + old_destructor = EG(symbol_table).pDestructor; + EG(symbol_table).pDestructor = accel_fast_zval_dtor; zend_try { - zend_hash_graceful_reverse_destroy(&EG(symbol_table).ht); + zend_hash_graceful_reverse_destroy(&EG(symbol_table)); } zend_end_try(); - EG(symbol_table).ht.pDestructor = old_destructor; + EG(symbol_table).pDestructor = old_destructor; } - zend_hash_init(&EG(symbol_table).ht, 8, NULL, NULL, 0); + zend_hash_init(&EG(symbol_table), 8, NULL, NULL, 0); ZEND_HASH_REVERSE_FOREACH(EG(function_table), 0) { zend_function *func = Z_PTR(_p->val); |