aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2011-02-28 18:31:50 +0800
committerMilan Crha <mcrha@redhat.com>2011-02-28 18:31:50 +0800
commit70241e1db9e5e5d42aa78b45845cfae6d649dc75 (patch)
tree89af6c4d1c1021760e6592ddd97ce3b7f3d27b4b
parent3ecc90d3ac37d8b90be2a4f9b62e74f2be9b1efc (diff)
downloadgsoc2013-evolution-70241e1db9e5e5d42aa78b45845cfae6d649dc75.tar
gsoc2013-evolution-70241e1db9e5e5d42aa78b45845cfae6d649dc75.tar.gz
gsoc2013-evolution-70241e1db9e5e5d42aa78b45845cfae6d649dc75.tar.bz2
gsoc2013-evolution-70241e1db9e5e5d42aa78b45845cfae6d649dc75.tar.lz
gsoc2013-evolution-70241e1db9e5e5d42aa78b45845cfae6d649dc75.tar.xz
gsoc2013-evolution-70241e1db9e5e5d42aa78b45845cfae6d649dc75.tar.zst
gsoc2013-evolution-70241e1db9e5e5d42aa78b45845cfae6d649dc75.zip
Bug #643297 - multipart/related formatter skips the last part
-rw-r--r--mail/em-format-html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-format-html.c b/mail/em-format-html.c
index 15c3e5e2df..780a02a17a 100644
--- a/mail/em-format-html.c
+++ b/mail/em-format-html.c
@@ -2135,7 +2135,7 @@ emfh_multipart_related_check (struct _EMFormatHTMLJob *job,
return;
}
- while (link->next != NULL) {
+ while (link != NULL) {
EMFormatPURI *puri = link->data;
if (puri->use_count == 0) {