summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2016-05-18 11:29:02 +0300
committerDmitry Stogov <dmitry@zend.com>2016-05-18 11:29:02 +0300
commitcef8d93edd83f9d30237d0bdf478c8847bda30fe (patch)
tree227faaeb1cc471b89f75da9ba1ed3721590f89e8
parent14023d39c1ae2fc48bb9ab2c87ea7136c58c2401 (diff)
downloadphp-git-cef8d93edd83f9d30237d0bdf478c8847bda30fe.tar.gz
Fixed typo
-rw-r--r--Zend/zend_hash.h2
1 files changed, 1 insertions, 1 deletions
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; \
} \