From: Peter Verthez Date: Sun, 22 Sep 2002 09:22:13 +0000 (+0000) Subject: Keep old encoding if new one cannot be created. X-Git-Url: https://git.dlugolecki.net.pl/?a=commitdiff_plain;ds=sidebyside;h=a14f8b06cbf7f3ca39951e1c7f3d12c4ff5b07cb;p=gedcom-parse.git Keep old encoding if new one cannot be created. --- diff --git a/gedcom/encoding.c b/gedcom/encoding.c index b5e2b40..36f88f3 100644 --- a/gedcom/encoding.c +++ b/gedcom/encoding.c @@ -237,22 +237,26 @@ static size_t conv_buf_size; int open_conv_to_internal(const char* fromcode) { + iconv_t new_cd_to_internal; const char *encoding = get_encoding(fromcode, the_enc); - if (cd_to_internal != (iconv_t) -1) - iconv_close(cd_to_internal); if (encoding == NULL) { - cd_to_internal = (iconv_t) -1; + new_cd_to_internal = (iconv_t) -1; } else { memset(conv_buf, 0, sizeof(conv_buf)); conv_buf_size = 0; - cd_to_internal = iconv_open(INTERNAL_ENCODING, encoding); - if (cd_to_internal == (iconv_t) -1) { + new_cd_to_internal = iconv_open(INTERNAL_ENCODING, encoding); + if (new_cd_to_internal == (iconv_t) -1) { gedcom_error(_("Error opening conversion context for encoding %s: %s"), encoding, strerror(errno)); } } - return (cd_to_internal != (iconv_t) -1); + if (new_cd_to_internal != (iconv_t) -1) { + if (cd_to_internal != (iconv_t) -1) + iconv_close(cd_to_internal); + cd_to_internal = new_cd_to_internal; + } + return (new_cd_to_internal != (iconv_t) -1); } void close_conv_to_internal()