diff options
author | Felipe Pena <felipe@php.net> | 2011-06-07 22:58:38 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2011-06-07 22:58:38 +0000 |
commit | f75714650b2a0a5132891dcc8c0dca58f14dde87 (patch) | |
tree | 38c8ee206c13278c1b7f2c5faf781ddf9acf4caa /Zend/zend.c | |
parent | 14ed1443182ee47abd9bfa85b28c8a176de36da5 (diff) | |
download | php-git-f75714650b2a0a5132891dcc8c0dca58f14dde87.tar.gz |
- Fixed bug #55007 (compiler fail after previous fail)
Diffstat (limited to 'Zend/zend.c')
-rw-r--r-- | Zend/zend.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend.c b/Zend/zend.c index fac824074d..6861f618bc 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -808,6 +808,7 @@ ZEND_API void _zend_bailout(char *filename, uint lineno) /* {{{ */ exit(-1); } CG(unclean_shutdown) = 1; + CG(active_class_entry) = NULL; CG(in_compilation) = EG(in_execution) = 0; EG(current_execute_data) = NULL; LONGJMP(*EG(bailout), FAILURE); |