diff options
| author | Antony Dovgal <tony2001@php.net> | 2007-11-01 19:13:49 +0000 |
|---|---|---|
| committer | Antony Dovgal <tony2001@php.net> | 2007-11-01 19:13:49 +0000 |
| commit | f6966f28d0d022126ebc01d91f05fb6ead116a74 (patch) | |
| tree | 84b70bac5cfa859c266e0800bc76ff6ad980ed98 /ext/iconv | |
| parent | e207cc58ac1d52b4749995821df32dbea6e9f86c (diff) | |
| download | php-git-f6966f28d0d022126ebc01d91f05fb6ead116a74.tar.gz | |
MFH: initialize correct variable
Diffstat (limited to 'ext/iconv')
| -rw-r--r-- | ext/iconv/iconv.c | 4 |
1 files 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}; |
