aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-label-list-store.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2009-09-24 18:25:35 +0800
committerMilan Crha <mcrha@redhat.com>2009-09-24 18:25:35 +0800
commite73e6f1ea878dfea7344bd9bf2bca06da78b29c9 (patch)
tree6e775b93e828bafe1baf385524ead4c7ec6293a5 /mail/e-mail-label-list-store.c
parent0c1afa3941ef2663793d0b5e1fd9221423374d19 (diff)
downloadgsoc2013-evolution-e73e6f1ea878dfea7344bd9bf2bca06da78b29c9.tar
gsoc2013-evolution-e73e6f1ea878dfea7344bd9bf2bca06da78b29c9.tar.gz
gsoc2013-evolution-e73e6f1ea878dfea7344bd9bf2bca06da78b29c9.tar.bz2
gsoc2013-evolution-e73e6f1ea878dfea7344bd9bf2bca06da78b29c9.tar.lz
gsoc2013-evolution-e73e6f1ea878dfea7344bd9bf2bca06da78b29c9.tar.xz
gsoc2013-evolution-e73e6f1ea878dfea7344bd9bf2bca06da78b29c9.tar.zst
gsoc2013-evolution-e73e6f1ea878dfea7344bd9bf2bca06da78b29c9.zip
Bug #593633 - Runtime warnings trying to create a recurrence event
Diffstat (limited to 'mail/e-mail-label-list-store.c')
-rw-r--r--mail/e-mail-label-list-store.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/mail/e-mail-label-list-store.c b/mail/e-mail-label-list-store.c
index a8953333a4..ba9bf41694 100644
--- a/mail/e-mail-label-list-store.c
+++ b/mail/e-mail-label-list-store.c
@@ -323,6 +323,7 @@ e_mail_label_list_store_get_name (EMailLabelListStore *store,
result = NULL;
g_strfreev (strv);
+ g_free (encoded);
return result;
}
@@ -352,6 +353,7 @@ e_mail_label_list_store_get_color (EMailLabelListStore *store,
valid = FALSE;
g_strfreev (strv);
+ g_free (encoded);
return valid;
}
@@ -378,6 +380,7 @@ e_mail_label_list_store_get_stock_id (EMailLabelListStore *store,
result = NULL;
g_strfreev (strv);
+ g_free (encoded);
return result;
}
@@ -434,6 +437,7 @@ e_mail_label_list_store_get_tag (EMailLabelListStore *store,
result = mail_label_list_store_tag_from_name (strv[0]);
g_strfreev (strv);
+ g_free (encoded);
return result;
}