diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2015-07-09 20:07:40 +0200 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2015-07-09 20:07:57 +0200 |
commit | cc876c04b420589cb1f62b650d0c0e24975dd4af (patch) | |
tree | 46e5fe6f43ff16030a746b3b7d1e83d47ed31609 /Zend/zend_compile.h | |
parent | 9591b1cc3c0a892b6febc39b80ba1f453532cb22 (diff) | |
download | php-git-cc876c04b420589cb1f62b650d0c0e24975dd4af.tar.gz |
Fix too early terminated temporary range with break/cont/goto
I have no crashing or leaking reproduce script, only valgrind invalid reads for that one; hence no phpt here
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r-- | Zend/zend_compile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index b07f70ea78..5560b7e86d 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -882,7 +882,7 @@ ZEND_API void zend_assert_valid_class_name(const zend_string *const_name); #define ZEND_FETCH_ARG_MASK 0x000fffff -#define ZEND_FREE_ON_RETURN (1<<0) +#define ZEND_FREE_ON_JUMP (1<<0) #define ZEND_MEMBER_FUNC_CALL (1<<0) |