From 0fc8ff61b2dc0549811559e63ee89cf4b12215a6 Mon Sep 17 00:00:00 2001 From: Shane Caraveo Date: Sun, 30 Apr 2000 04:56:48 +0000 Subject: [PATCH] zeroing the variables fixes one crash...now crashes on memory allocation during zend_compile_files --- sapi/apache/sapi_apache.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sapi/apache/sapi_apache.c b/sapi/apache/sapi_apache.c index 460eabd1d1c..36393327732 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) {