]> git.pld-linux.org Git - packages/evolution.git/blob - evolution-iconv_flush.patch
- Allow timezone offsets to be up to 14 hours ahead of UTC
[packages/evolution.git] / evolution-iconv_flush.patch
1 2003-09-23  Jeffrey Stedfast  <fejj@ximian.com>
2
3         * camel-mime-utils.c (append_8bit): Don't forget to flush the
4         iconv conversion.
5
6 Index: camel-mime-utils.c
7 ===================================================================
8 RCS file: /cvs/gnome/evolution/camel/camel-mime-utils.c,v
9 retrieving revision 1.183.4.3
10 diff -u -r1.183.4.3 camel-mime-utils.c
11 --- camel/camel-mime-utils.c    29 Jul 2003 13:53:29 -0000      1.183.4.3
12 +++ camel/camel-mime-utils.c    23 Sep 2003 18:37:57 -0000
13 @@ -1132,7 +1132,9 @@
14                 e_iconv_close (ic);
15                 return FALSE;
16         }
17 -
18 +       
19 +       e_iconv (ic, NULL, NULL, &outbuf, &outlen);
20 +       
21         *outbuf = 0;
22         g_string_append(out, outbase);
23         g_free(outbase);
This page took 0.045814 seconds and 3 git commands to generate.