From 3b7dcf5e653e6ba5a54c46846ab20851fedb40ea Mon Sep 17 00:00:00 2001 From: Moriyoshi Koizumi Date: Tue, 23 Dec 2003 17:10:54 +0000 Subject: [PATCH] Those are not structures :-) --- 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 ef020ef832..a48d750cb9 100644 --- a/ext/iconv/iconv.c +++ b/ext/iconv/iconv.c @@ -1245,7 +1245,7 @@ static php_iconv_err_t _php_iconv_mime_decode(smart_str *pretval, const char *st const char *encoded_word = NULL; const char *spaces = NULL; - php_iconv_enc_scheme_t enc_scheme = {0}; + php_iconv_enc_scheme_t enc_scheme = 0; if (next_pos != NULL) { *next_pos = NULL; @@ -2061,7 +2061,7 @@ PHP_FUNCTION(iconv_mime_decode_headers) int charset_len; long mode = 0; - php_iconv_err_t err = {0}; + php_iconv_err_t err = 0; charset = ICONVG(internal_encoding); -- 2.40.0