From: Sascha Schumann Date: Sun, 27 Aug 2000 19:40:21 +0000 (+0000) Subject: Initializing new_path once is enough X-Git-Tag: php-4.0.2~29 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=390d1cd1b7989e3c5d5ce46d4603a1f16c9d9115;p=php Initializing new_path once is enough --- diff --git a/main/main.c b/main/main.c index 8c50ca849c..86c8634804 100644 --- a/main/main.c +++ b/main/main.c @@ -1106,7 +1106,7 @@ PHPAPI void php_execute_script(zend_file_handle *primary_file CLS_DC ELS_DC PLS_ zend_file_handle *prepend_file_p, *append_file_p; zend_file_handle prepend_file, append_file; char old_cwd[4096]; - char new_path[4096] = ""; + char new_path[4096]; SLS_FETCH(); old_cwd[0] = new_path[0] = '\0';