From 39a5677cf3402f2be9b04a53b01894b15e7c80d3 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Wed, 19 Apr 2006 10:29:46 +0000 Subject: [PATCH] Fixed cleanup dependent on uninitialized value --- Zend/zend.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Zend/zend.c b/Zend/zend.c index b432c05b8e..825a307bae 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -911,6 +911,7 @@ static void unicode_globals_ctor(zend_unicode_globals *unicode_globals TSRMLS_DC unicode_globals->output_encoding_conv = NULL; unicode_globals->script_encoding_conv = NULL; unicode_globals->http_input_encoding_conv = NULL; + unicode_globals->filesystem_encoding_conv = NULL; zend_set_converter_encoding(&unicode_globals->utf8_conv, "UTF-8"); unicode_globals->from_error_mode = ZEND_CONV_ERROR_SUBST; memset(unicode_globals->from_subst_char, 0, 3 * sizeof(UChar)); -- 2.50.1