comparison src/mime.c @ 12105:d4cd7d443795

[gaim-migrate @ 14402] trying not to fall behind on sametime fixes committer: Tailor Script <tailor@pidgin.im>
author Christopher O'Brien <siege@pidgin.im>
date Tue, 15 Nov 2005 06:06:47 +0000
parents 8cb75ba77f9d
children 443aaa05a7c3
comparison
equal deleted inserted replaced
12104:3db14853d9ae 12105:d4cd7d443795
214 part = g_new0(GaimMimePart, 1); 214 part = g_new0(GaimMimePart, 1);
215 fields_init(&part->fields); 215 fields_init(&part->fields);
216 part->doc = doc; 216 part->doc = doc;
217 part->data = g_string_new(NULL); 217 part->data = g_string_new(NULL);
218 218
219 doc->parts = g_list_append(doc->parts, part); 219 doc->parts = g_list_prepend(doc->parts, part);
220 220
221 return part; 221 return part;
222 } 222 }
223 223
224 224