From f6966f28d0d022126ebc01d91f05fb6ead116a74 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Thu, 1 Nov 2007 19:13:49 +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 56aba6cfe2..b3a9101c53 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}; -- 2.50.1