From 865f11e9193b22696328f6828b296fbe753166f2 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Sun, 24 Jan 2010 12:39:31 +0000 Subject: [PATCH] - prevent possible crash when error/warnings are raised during startup (like deprecated features), 5.3+ only --- main/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/main.c b/main/main.c index 1f9eb03c33..69d2b61217 100644 --- a/main/main.c +++ b/main/main.c @@ -1972,7 +1972,7 @@ int php_module_startup(sapi_module_struct *sf, zend_module_entry *additional_mod #endif EG(bailout) = NULL; EG(error_reporting) = E_ALL & ~E_NOTICE; - + EG(active_symbol_table) = NULL; PG(header_is_being_sent) = 0; SG(request_info).headers_only = 0; SG(request_info).argv0 = NULL; -- 2.40.0