[Commits] procmime.c 1.49.2.147 1.49.2.148
wwp at claws-mail.org
wwp at claws-mail.org
Sun Jul 15 09:19:19 CEST 2012
Update of /home/claws-mail/claws/src
In directory srv:/tmp/cvs-serv8976/src
Modified Files:
Tag: gtk2
procmime.c
Log Message:
2012-07-15 [wwp] 3.8.1cvs15
* src/procmime.c
Fix bug 2697, thanks to Mikhail Efremov (wrong list ptr used).
Index: procmime.c
===================================================================
RCS file: /home/claws-mail/claws/src/procmime.c,v
retrieving revision 1.49.2.147
retrieving revision 1.49.2.148
diff -u -d -r1.49.2.147 -r1.49.2.148
--- procmime.c 10 Jul 2012 21:35:40 -0000 1.49.2.147
+++ procmime.c 15 Jul 2012 07:19:17 -0000 1.49.2.148
@@ -1705,7 +1705,7 @@
(g_slist_find_custom(concatlist, down_attr, g_strcmp0) == NULL))
concatlist = g_slist_prepend(concatlist, g_strdup(tmpattr));
- if (convert && (g_slist_find_custom(convlist, down_attr, g_strcmp0) == NULL))
+ if (convert && (g_slist_find_custom(convlist, tmpattr, g_strcmp0) == NULL))
convlist = g_slist_prepend(convlist, g_strdup(tmpattr));
g_free(tmpattr);
More information about the Commits
mailing list