Skip to content

Commit 5314f13

Browse files
committed
Fix accidental function related flag value reuse
1 parent 3c288b1 commit 5314f13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_compile.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ typedef struct _zend_try_catch_element {
240240
#define ZEND_ACC_CLOSURE 0x100000
241241
#define ZEND_ACC_GENERATOR 0x800000
242242

243-
#define ZEND_ACC_NO_RT_ARENA 0x10000
243+
#define ZEND_ACC_NO_RT_ARENA 0x80000
244244

245245
/* call through user function trampoline. e.g. __call, __callstatic */
246246
#define ZEND_ACC_CALL_VIA_TRAMPOLINE 0x200000

0 commit comments

Comments
 (0)