mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Remove useless check
This commit is contained in:
parent
90c16dba16
commit
d3f073e8c7
1 changed files with 1 additions and 4 deletions
|
@ -749,10 +749,7 @@ static zend_always_inline zval *_zend_hash_add_or_update_i(HashTable *ht, zend_s
|
|||
|
||||
IS_CONSISTENT(ht);
|
||||
HT_ASSERT_RC1(ht);
|
||||
|
||||
if (!ZSTR_IS_INTERNED(key)) {
|
||||
zend_string_hash_val(key);
|
||||
}
|
||||
zend_string_hash_val(key);
|
||||
|
||||
if (UNEXPECTED(HT_FLAGS(ht) & (HASH_FLAG_UNINITIALIZED|HASH_FLAG_PACKED))) {
|
||||
if (EXPECTED(HT_FLAGS(ht) & HASH_FLAG_UNINITIALIZED)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue