From 2caec09b47fe3d60677c8e4439b78abd6cf7888e Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Fri, 6 Jul 2001 22:20:34 +0000 Subject: (best_encoding): make sure we don't try to call iconv_open with a NULL 2001-07-06 Larry Ewing (best_encoding): make sure we don't try to call iconv_open with a NULL tocode. svn path=/trunk/; revision=10872 --- composer/ChangeLog | 2 ++ composer/e-msg-composer.c | 3 +++ 2 files changed, 5 insertions(+) diff --git a/composer/ChangeLog b/composer/ChangeLog index 14aeb9c916..f4b312f00e 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,6 +1,8 @@ 2001-07-06 Larry Ewing * e-msg-composer.c (autosave_manager_new): add missing static. + (best_encoding): make sure we don't try to call iconv_open with a + NULL tocode. 2001-07-06 Jeffrey Stedfast diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index 88cd3190a6..0a72137a24 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -163,6 +163,9 @@ best_encoding (GByteArray *buf, const char *charset) int status, count = 0; iconv_t cd; + if (!charset) + return -1; + cd = iconv_open (charset, "utf-8"); g_return_val_if_fail (cd != (iconv_t)-1, -1); -- cgit v1.2.3