Changeset 3246
- Timestamp:
- 01/12/08 16:50:32
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/libtinymail-camel/camel-lite/ChangeLog (modified) (1 diff)
- trunk/libtinymail-camel/camel-lite/camel/camel-mime-filter-tohtml.c (modified) (1 diff)
- trunk/libtinymail-camel/camel-lite/camel/camel-mime-part.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r3244 r3246 1 1 2008-01-12 Philip Van Hoof <pvanhoof@gnome.org> 2 2 3 * Merged camel-lite with Camel upstream rev. 83 53 * Merged camel-lite with Camel upstream rev. 8360 4 4 * Added an extra check around a strcmp that seems to have caused a 5 5 crash once trunk/libtinymail-camel/camel-lite/ChangeLog
r3239 r3246 5 5 2008-01-12 Philip Van Hoof <pvanhoof@gnome.org> 6 6 7 * Merged with Camel upstream rev. 83 587 * Merged with Camel upstream rev. 8360 8 8 9 9 2007-12-24 Philip Van Hoof <pvanhoof@gnome.org> trunk/libtinymail-camel/camel-lite/camel/camel-mime-filter-tohtml.c
r2950 r3246 276 276 while (inptr < inend && *inptr != '\n') 277 277 inptr++; 278 278 279 279 if (inptr >= inend && !flush) 280 280 break; 281 281 282 282 html->column = 0; 283 283 depth = 0; trunk/libtinymail-camel/camel-lite/camel/camel-mime-part.c
r3239 r3246 1088 1088 dw = camel_medium_get_content_object (CAMEL_MEDIUM (mime_part)); 1089 1089 1090 null = camel_stream_null_new ();1091 camel_data_wrapper_decode_to_stream (dw, null);1090 null = (CamelStreamNull *) camel_stream_null_new (); 1091 camel_data_wrapper_decode_to_stream (dw, (CamelStream *) null); 1092 1092 size = null->written; 1093 1093
