mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Remove leading underscore for _zend_hash_find_known_hash (#7260)
Convert zend_hash_find_ex(..., 1) to zend_hash_find_known_hash(...) Convert zend_hash_find_ex(..., 0) to zend_hash_find(...) Also add serializable changes to UPGRADING.INTERNALS summary
This commit is contained in:
parent
576655e23f
commit
ae8647d9d3
21 changed files with 171 additions and 168 deletions
|
@ -1617,7 +1617,7 @@ ZEND_API void zend_attach_symbol_table(zend_execute_data *execute_data) /* {{{ *
|
|||
zval *var = EX_VAR_NUM(0);
|
||||
|
||||
do {
|
||||
zval *zv = zend_hash_find_ex(ht, *str, 1);
|
||||
zval *zv = zend_hash_find_known_hash(ht, *str);
|
||||
|
||||
if (zv) {
|
||||
if (Z_TYPE_P(zv) == IS_INDIRECT) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue