From e60e9ae5c8368813e2a793d1168ecb698debf9c9 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Thu, 1 Nov 2007 19:13:39 +0000 Subject: [PATCH] MFH: initialize correct variable --- ext/iconv/iconv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/iconv/iconv.c b/ext/iconv/iconv.c index 2a4d6d72357..37d187a13ab 100644 --- a/ext/iconv/iconv.c +++ b/ext/iconv/iconv.c @@ -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};