Changeset 2830

Show
Ignore:
Timestamp:
10/11/07 11:40:24
Author:
pvanhoof
Message:

2007-10-11 Philip Van Hoof <pvanhoof@gnome.org>

        • iconv error situation handler
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r2829 r2830  
     12007-10-11  Philip Van Hoof  <pvanhoof@gnome.org> 
     2 
     3        * iconv error situation handler 
     4 
    152007-10-10  Jose Dapena Paz  <jdapena@igalia.com> 
    26 
  • trunk/libtinymail-camel/camel-lite/camel/camel-folder-summary.c

    r2823 r2830  
    20442044         
    20452045        charset = charset ? e_iconv_charset_name (charset) : NULL; 
    2046          
     2046 
    20472047        subject = summary_format_string(h, "subject", charset); 
    20482048        from = summary_format_address(h, "from", charset); 
  • trunk/libtinymail-camel/camel-lite/camel/camel-mime-utils.c

    r2828 r2830  
    905905                                        *outbuf = 0; 
    906906                                        decoded = g_strdup (outbase); 
     907                                } else { 
     908                                        perror ("iconv"); 
     909                                        e_iconv (ic, NULL, 0, &outbuf, &outlen); 
     910                                        *outbuf = 0; 
     911                                        decoded = g_strdup (outbase); 
     912                                        /* decoded = g_strdup (inbuf); */ 
    907913                                } 
     914 
    908915                                e_iconv_close (ic); 
    909916                        } else {