X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;ds=sidebyside;f=gedcom%2Fencoding.c;h=b5e2b40b148d99ae0a7e8cfca253bd5f6fb30d15;hb=d2035760540dc564416171d40196bfc364b82e54;hp=b2c3c416955e65d4465f4dc7eff2e71e12d57ee7;hpb=aa8e5450d4e93e743e848a0ac045e04c94474347;p=gedcom-parse.git diff --git a/gedcom/encoding.c b/gedcom/encoding.c index b2c3c41..b5e2b40 100644 --- a/gedcom/encoding.c +++ b/gedcom/encoding.c @@ -39,7 +39,7 @@ static iconv_t cd_to_internal = (iconv_t) -1; static ENCODING the_enc = ONE_BYTE; static hash_t *encodings = NULL; -char* charwidth_string[] = { "1", "2_HILO", "2_LOHI" }; +const char* charwidth_string[] = { "1", "2_HILO", "2_LOHI" }; hnode_t *node_alloc(void *c __attribute__((unused))) { @@ -53,7 +53,8 @@ void node_free(hnode_t *n, void *c __attribute__((unused))) free(n); } -void add_encoding(char *gedcom_n, char* charwidth, char *iconv_n) +void add_encoding(const char *gedcom_n, const char* charwidth, + const char *iconv_n) { char *key, *val; @@ -79,7 +80,7 @@ void add_encoding(char *gedcom_n, char* charwidth, char *iconv_n) MEMORY_ERROR; } -char* get_encoding(char* gedcom_n, ENCODING enc) +char* get_encoding(const char* gedcom_n, ENCODING enc) { char *key; hnode_t *node; @@ -106,9 +107,15 @@ char* get_encoding(char* gedcom_n, ENCODING enc) } } +static char *new_gconv_path; + void cleanup_encodings() { hash_free(encodings); + /* Clean up environment */ + putenv(GCONV_SEARCH_PATH); + if (new_gconv_path) + free(new_gconv_path); } /* Let function be called before main() */ @@ -139,7 +146,6 @@ void update_gconv_search_path() /* Add gedcom data directory to gconv search path */ gconv_path = getenv(GCONV_SEARCH_PATH); if (gconv_path == NULL || strstr(gconv_path, PKGDATADIR) == NULL) { - char *new_gconv_path; if (gconv_path == NULL) { new_gconv_path = (char *)malloc(strlen(GCONV_SEARCH_PATH) + strlen(PKGDATADIR) @@ -229,9 +235,9 @@ void set_encoding_width(ENCODING enc) static char conv_buf[MAXGEDCLINELEN * 2]; static size_t conv_buf_size; -int open_conv_to_internal(char* fromcode) +int open_conv_to_internal(const char* fromcode) { - char *encoding = get_encoding(fromcode, the_enc); + const char *encoding = get_encoding(fromcode, the_enc); if (cd_to_internal != (iconv_t) -1) iconv_close(cd_to_internal); if (encoding == NULL) { @@ -257,7 +263,7 @@ void close_conv_to_internal() cd_to_internal = (iconv_t) -1; } -char* to_internal(char* str, size_t len, +char* to_internal(const char* str, size_t len, char* output_buffer, size_t out_len) { size_t res;