From: Dmitry Stogov Date: Wed, 18 May 2016 08:29:02 +0000 (+0300) Subject: Fixed typo X-Git-Tag: php-7.1.0alpha1~106 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cef8d93edd83f9d30237d0bdf478c8847bda30fe;p=php Fixed typo --- diff --git a/Zend/zend_hash.h b/Zend/zend_hash.h index aa5dc24fd2..ba4704fdd9 100644 --- a/Zend/zend_hash.h +++ b/Zend/zend_hash.h @@ -159,7 +159,7 @@ ZEND_API zval* ZEND_FASTCALL _zend_hash_index_find(const HashTable *ht, zend_ulo #define ZEND_HASH_INDEX_FIND(_ht, _h, _ret, _not_found) do { \ if (EXPECTED((_ht)->u.flags & HASH_FLAG_PACKED)) { \ if (EXPECTED((_h) < (_ht)->nNumUsed)) { \ - _ret = &ht->arData[_h].val; \ + _ret = &_ht->arData[_h].val; \ if (UNEXPECTED(Z_TYPE_P(_ret) == IS_UNDEF)) { \ goto _not_found; \ } \