File bgo-564860-labels-parse-crash-fix.patch of Package evolution
Index: e-util/e-util-labels.c
===================================================================
--- e-util/e-util-labels.c (revision 36899)
+++ e-util/e-util-labels.c (working copy)
@@ -71,6 +71,10 @@ e_util_labels_parse (GConfClient *client
char *color, *name, *tag;
name = buf = list->data;
color = strrchr (buf, ':');
+ if (color == NULL) {
+ g_free (buf);
+ continue;
+ }
*color++ = '\0';
tag = strchr (color, '|');