zeroing the variables fixes one crash...now crashes on memory allocation during zend_compile_files

This commit is contained in:
Shane Caraveo 2000-04-30 04:56:48 +00:00
parent b87df8f210
commit 0fc8ff61b2

View File

@ -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) {