diff options
Diffstat (limited to 'camel/camel-charset-map.c')
-rw-r--r-- | camel/camel-charset-map.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/camel/camel-charset-map.c b/camel/camel-charset-map.c index 63e33c81ec..dbd956a15d 100644 --- a/camel/camel-charset-map.c +++ b/camel/camel-charset-map.c @@ -397,6 +397,9 @@ camel_charset_to_iconv (const char *name) { const char *charset; + if (name == NULL) + return NULL; + ICONV_CHARSETS_LOCK (); charset = g_hash_table_lookup (iconv_charsets, name); if (!charset) { |