diff options
author | Milan Crha <mcrha@redhat.com> | 2011-02-28 18:31:50 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2011-02-28 18:31:50 +0800 |
commit | 70241e1db9e5e5d42aa78b45845cfae6d649dc75 (patch) | |
tree | 89af6c4d1c1021760e6592ddd97ce3b7f3d27b4b /mail/em-format-html.c | |
parent | 3ecc90d3ac37d8b90be2a4f9b62e74f2be9b1efc (diff) | |
download | gsoc2013-evolution-70241e1db9e5e5d42aa78b45845cfae6d649dc75.tar.gz gsoc2013-evolution-70241e1db9e5e5d42aa78b45845cfae6d649dc75.tar.zst gsoc2013-evolution-70241e1db9e5e5d42aa78b45845cfae6d649dc75.zip |
Bug #643297 - multipart/related formatter skips the last part
Diffstat (limited to 'mail/em-format-html.c')
-rw-r--r-- | mail/em-format-html.c | 2 |
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) { |