File tree 1 file changed +1
-3
lines changed
1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -626,8 +626,6 @@ struct _zend_ast_ref {
626
626
#define ZEND_GUARD_PROTECT_RECURSION (pg , t ) *pg |= ZEND_GUARD_RECURSION_TYPE(t)
627
627
#define ZEND_GUARD_UNPROTECT_RECURSION (pg , t ) *pg &= ~ZEND_GUARD_RECURSION_TYPE(t)
628
628
629
- #define ZEND_RECURSION
630
-
631
629
static zend_always_inline uint8_t zval_get_type (const zval * pz ) {
632
630
return pz -> u1 .v .type ;
633
631
}
@@ -869,7 +867,7 @@ static zend_always_inline uint32_t zval_gc_info(uint32_t gc_type_info) {
869
867
#define Z_UNPROTECT_RECURSION_P (zv ) Z_UNPROTECT_RECURSION(*(zv))
870
868
871
869
#define ZEND_GUARD_OR_GC_IS_RECURSIVE (pg , t , zobj ) \
872
- pg ? ZEND_GUARD_IS_RECURSIVE(pg, t) : GC_IS_RECURSIVE(zobj)
870
+ ( pg ? ZEND_GUARD_IS_RECURSIVE(pg, t) : GC_IS_RECURSIVE(zobj) )
873
871
874
872
#define ZEND_GUARD_OR_GC_PROTECT_RECURSION (pg , t , zobj ) do { \
875
873
if (pg) { \
You can’t perform that action at this time.
0 commit comments