From: Dmitry Stogov Date: Wed, 19 Apr 2006 10:29:46 +0000 (+0000) Subject: Fixed cleanup dependent on uninitialized value X-Git-Tag: RELEASE_1_3~31 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=39a5677cf3402f2be9b04a53b01894b15e7c80d3;p=php Fixed cleanup dependent on uninitialized value --- 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));