File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1967,7 +1967,7 @@ ZEND_API void ZEND_FASTCALL zend_hash_internal_pointer_reset_ex(HashTable *ht, H
1967
1967
uint32_t idx ;
1968
1968
1969
1969
IS_CONSISTENT (ht );
1970
- HT_ASSERT (ht -> nInternalPointer != & pos || GC_REFCOUNT (ht ) == 1 );
1970
+ HT_ASSERT (& ht -> nInternalPointer != pos || GC_REFCOUNT (ht ) == 1 );
1971
1971
1972
1972
for (idx = 0 ; idx < ht -> nNumUsed ; idx ++ ) {
1973
1973
if (Z_TYPE (ht -> arData [idx ].val ) != IS_UNDEF ) {
@@ -1987,7 +1987,7 @@ ZEND_API void ZEND_FASTCALL zend_hash_internal_pointer_end_ex(HashTable *ht, Has
1987
1987
uint32_t idx ;
1988
1988
1989
1989
IS_CONSISTENT (ht );
1990
- HT_ASSERT (ht -> nInternalPointer != & pos || GC_REFCOUNT (ht ) == 1 );
1990
+ HT_ASSERT (& ht -> nInternalPointer != pos || GC_REFCOUNT (ht ) == 1 );
1991
1991
1992
1992
idx = ht -> nNumUsed ;
1993
1993
while (idx > 0 ) {
@@ -2006,7 +2006,7 @@ ZEND_API int ZEND_FASTCALL zend_hash_move_forward_ex(HashTable *ht, HashPosition
2006
2006
uint32_t idx = * pos ;
2007
2007
2008
2008
IS_CONSISTENT (ht );
2009
- HT_ASSERT (ht -> nInternalPointer != & pos || GC_REFCOUNT (ht ) == 1 );
2009
+ HT_ASSERT (& ht -> nInternalPointer != pos || GC_REFCOUNT (ht ) == 1 );
2010
2010
2011
2011
if (idx != HT_INVALID_IDX ) {
2012
2012
while (1 ) {
@@ -2030,7 +2030,7 @@ ZEND_API int ZEND_FASTCALL zend_hash_move_backwards_ex(HashTable *ht, HashPositi
2030
2030
uint32_t idx = * pos ;
2031
2031
2032
2032
IS_CONSISTENT (ht );
2033
- HT_ASSERT (ht -> nInternalPointer != & pos || GC_REFCOUNT (ht ) == 1 );
2033
+ HT_ASSERT (& ht -> nInternalPointer != pos || GC_REFCOUNT (ht ) == 1 );
2034
2034
2035
2035
if (idx != HT_INVALID_IDX ) {
2036
2036
while (idx > 0 ) {
You can’t perform that action at this time.
0 commit comments