summaryrefslogtreecommitdiff
path: root/sapi/apache/sapi_apache.c
diff options
context:
space:
mode:
Diffstat (limited to 'sapi/apache/sapi_apache.c')
-rw-r--r--sapi/apache/sapi_apache.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sapi/apache/sapi_apache.c b/sapi/apache/sapi_apache.c
index 460eabd1d1..3639332773 100644
--- a/sapi/apache/sapi_apache.c
+++ b/sapi/apache/sapi_apache.c
@@ -67,9 +67,13 @@ PHPAPI int apache_php_module_main(request_rec *r, int fd, int display_source_mod
zend_compiler_globals cg;
zend_executor_globals eg;
php_core_globals pcg;
+
zend_compiler_globals *compiler_globals=&cg;
zend_executor_globals *executor_globals=⪚
php_core_globals *core_globals=&pcg;
+ memset(&cg,0,sizeof(zend_compiler_globals));
+ memset(&eg,0,sizeof(zend_executor_globals));
+ memset(&pcg,0,sizeof(php_core_globals));
#endif
if (php_request_startup(CLS_C ELS_CC PLS_CC SLS_CC) == FAILURE) {