diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-07-24 21:30:18 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-07-24 21:30:18 +0000 |
commit | 0db597422f2e5aa5a15342b95b56a0c1247af27f (patch) | |
tree | 440506b1317a8543805b0b31c3b85e90975e0a2c /iconv/iconvconfig.c | |
parent | 2a28c52993c7d1f29aa00f69d39b21f0122815cf (diff) | |
download | glibc-0db597422f2e5aa5a15342b95b56a0c1247af27f.tar.gz glibc-0db597422f2e5aa5a15342b95b56a0c1247af27f.tar.xz glibc-0db597422f2e5aa5a15342b95b56a0c1247af27f.zip |
Update.
* iconv/gconv_cache.c (find_module): Don't allocate room for the filename. Use alloca, we don't need it beyond this function. (__gconv_release_cache): New function. * iconv/gconv_db.c (__gconv_close_transform): Call __gconv_release_cache after the steps are handled. * iconv/gconv_dl.c (__gconv_find_shlib): Allocate file name in the record as well. * iconv/gconv_int.h: Add prototype fpr __gconv_release_cache.
Diffstat (limited to 'iconv/iconvconfig.c')
-rw-r--r-- | iconv/iconvconfig.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/iconv/iconvconfig.c b/iconv/iconvconfig.c index d7a514cf88..e0811d422a 100644 --- a/iconv/iconvconfig.c +++ b/iconv/iconvconfig.c @@ -714,8 +714,6 @@ add_builtins (void) /* add the builtin transformations. */ for (cnt = 0; cnt < nbuiltin_trans; ++cnt) - { - printf("%s: %s -> %s\n", builtin_trans[cnt].module,builtin_trans[cnt].from,builtin_trans[cnt].to); new_module (builtin_trans[cnt].from, strlen (builtin_trans[cnt].from) + 1, builtin_trans[cnt].to, @@ -723,7 +721,6 @@ add_builtins (void) "", builtin_trans[cnt].module, strlen (builtin_trans[cnt].module) + 1, builtin_trans[cnt].cost, 0); - } } |