summaryrefslogtreecommitdiff
path: root/Zend/zend.c
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-09-11 14:30:08 +0000
committerAntony Dovgal <tony2001@php.net>2006-09-11 14:30:08 +0000
commitd6ee9d48109814a3ba8e9879f5ab63466f4327be (patch)
tree9e4ab95ef510c1a5eff62ae3709e3a9ff87e57fc /Zend/zend.c
parent0a1f5d12a127f0cbf3330a2eada88e7744d34eb1 (diff)
downloadphp-git-d6ee9d48109814a3ba8e9879f5ab63466f4327be.tar.gz
MFH: fix #38779 (engine crashes when require()'ing file with syntax error through userspace stream wrapper)
Diffstat (limited to 'Zend/zend.c')
-rw-r--r--Zend/zend.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend.c b/Zend/zend.c
index 9b03aa45c8..fbef8186c7 100644
--- a/Zend/zend.c
+++ b/Zend/zend.c
@@ -503,6 +503,7 @@ static void executor_globals_ctor(zend_executor_globals *executor_globals TSRMLS
EG(current_execute_data) = NULL;
EG(current_module) = NULL;
EG(exit_status) = 0;
+ EG(active) = 0;
}