From 5314f13fc6f88d013550806a9bb5ee0821845b1c Mon Sep 17 00:00:00 2001 From: Bob Weinand Date: Mon, 22 Jun 2015 01:36:17 +0200 Subject: [PATCH] Fix accidental function related flag value reuse --- Zend/zend_compile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index f1f7195494..5da420b704 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -240,7 +240,7 @@ typedef struct _zend_try_catch_element { #define ZEND_ACC_CLOSURE 0x100000 #define ZEND_ACC_GENERATOR 0x800000 -#define ZEND_ACC_NO_RT_ARENA 0x10000 +#define ZEND_ACC_NO_RT_ARENA 0x80000 /* call through user function trampoline. e.g. __call, __callstatic */ #define ZEND_ACC_CALL_VIA_TRAMPOLINE 0x200000 -- 2.40.0