aboutsummaryrefslogtreecommitdiffstats
path: root/em-format/e-mail-formatter-print-headers.c
diff options
context:
space:
mode:
Diffstat (limited to 'em-format/e-mail-formatter-print-headers.c')
-rw-r--r--em-format/e-mail-formatter-print-headers.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/em-format/e-mail-formatter-print-headers.c b/em-format/e-mail-formatter-print-headers.c
index fb19559e49..a79dfa1f70 100644
--- a/em-format/e-mail-formatter-print-headers.c
+++ b/em-format/e-mail-formatter-print-headers.c
@@ -61,7 +61,7 @@ emfpe_headers_format (EMailFormatterExtension *extension,
const gchar *buf;
gint attachments_count;
gchar *part_id_prefix;
- const GQueue *headers;
+ GQueue *headers_queue;
GQueue queue = G_QUEUE_INIT;
GList *head, *link;
@@ -76,8 +76,8 @@ emfpe_headers_format (EMailFormatterExtension *extension,
"<table border=\"0\" cellspacing=\"5\" "
"cellpadding=\"0\" class=\"printing-header\">\n");
- headers = e_mail_formatter_get_headers (formatter);
- for (link = headers->head; link != NULL; link = g_list_next (link)) {
+ headers_queue = e_mail_formatter_dup_headers (formatter);
+ for (link = headers_queue->head; link != NULL; link = g_list_next (link)) {
EMailFormatterHeader *header = link->data;
raw_header.name = header->name;
@@ -113,6 +113,8 @@ emfpe_headers_format (EMailFormatterExtension *extension,
}
}
+ g_queue_free_full (headers_queue, (GDestroyNotify) e_mail_formatter_header_free);
+
/* Get prefix of this PURI */
part_id_prefix = g_strndup (part->id, g_strrstr (part->id, ".") - part->id);