diff options
-rw-r--r-- | composer/ChangeLog | 4 | ||||
-rw-r--r-- | composer/e-msg-composer.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 39ea911219..4e7b79db11 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,7 @@ +2001-05-31 Dan Winship <danw@ximian.com> + + * e-msg-composer.c (best_encoding): Add a missing iconv_close + 2001-05-30 Dan Winship <danw@ximian.com> * e-msg-composer.c (build_message): Use the config-specified diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index c4d597af26..9736572c87 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -156,6 +156,7 @@ best_encoding (GByteArray *buf, const char *charset) count++; } } while (status == -1 && errno == E2BIG); + iconv_close (cd); if (status == -1) return -1; |