MFH: initialize correct variable

This commit is contained in:
Antony Dovgal 2007-11-01 19:13:39 +00:00
parent 7c69bbaec7
commit e60e9ae5c8

View File

@ -2167,9 +2167,9 @@ PHP_FUNCTION(iconv_mime_encode)
PHP_FUNCTION(iconv_mime_decode)
{
char *encoded_str;
int encoded_str_len = 0;
int encoded_str_len;
char *charset;
int charset_len;
int charset_len = 0;
long mode = 0;
smart_str retval = {0};