2005-10-10 [colin] 1.9.15cvs28
[claws.git] / src / msgcache.c
index e64aa44808f231dac6f41dd8e61dfb2627dec701..8e8273effb8137492840aec32c9f9412e00ac2f2 100644 (file)
@@ -461,15 +461,9 @@ MsgCache *msgcache_read_cache(FolderItem *item, const gchar *cache_file)
        if (srccharset == NULL || dstcharset == NULL) {
                conv = NULL;
        } else if (strcmp(srccharset, dstcharset) == 0) {
-               StrdupConverter *strdupconv;
+               debug_print("using Noop Converter\n");
 
-               debug_print("using StrdupConverter\n");
-
-               strdupconv = g_new0(StrdupConverter, 1);
-               strdupconv->converter.convert = strconv_strdup_convert;
-               strdupconv->converter.free = NULL;
-
-               conv = (StringConverter *) strdupconv;
+               conv = NULL;
        } else {
                CharsetConverter *charsetconv;