From: Bob Weinand Date: Sun, 21 Jun 2015 23:36:17 +0000 (+0200) Subject: Fix accidental function related flag value reuse X-Git-Tag: php-7.0.0alpha2~2^2~35 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5314f13fc6f88d013550806a9bb5ee0821845b1c;p=php Fix accidental function related flag value reuse --- 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