Skip to content

Commit cef8d93

Browse files
committed
Fixed typo
1 parent 14023d3 commit cef8d93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_hash.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ ZEND_API zval* ZEND_FASTCALL _zend_hash_index_find(const HashTable *ht, zend_ulo
159159
#define ZEND_HASH_INDEX_FIND(_ht, _h, _ret, _not_found) do { \
160160
if (EXPECTED((_ht)->u.flags & HASH_FLAG_PACKED)) { \
161161
if (EXPECTED((_h) < (_ht)->nNumUsed)) { \
162-
_ret = &ht->arData[_h].val; \
162+
_ret = &_ht->arData[_h].val; \
163163
if (UNEXPECTED(Z_TYPE_P(_ret) == IS_UNDEF)) { \
164164
goto _not_found; \
165165
} \

0 commit comments

Comments
 (0)