aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/task-page.c
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@novell.com>2004-06-02 19:28:39 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2004-06-02 19:28:39 +0800
commitdb1a6f1329c552b0370d295263fe9dbe552dd1a2 (patch)
tree3ebc41b4b06e6509e8da8f67f60ed527b1344f37 /calendar/gui/dialogs/task-page.c
parent5786eb64a18ed1302ac6e10dc8aea2cc2d346ba1 (diff)
downloadgsoc2013-evolution-db1a6f1329c552b0370d295263fe9dbe552dd1a2.tar
gsoc2013-evolution-db1a6f1329c552b0370d295263fe9dbe552dd1a2.tar.gz
gsoc2013-evolution-db1a6f1329c552b0370d295263fe9dbe552dd1a2.tar.bz2
gsoc2013-evolution-db1a6f1329c552b0370d295263fe9dbe552dd1a2.tar.lz
gsoc2013-evolution-db1a6f1329c552b0370d295263fe9dbe552dd1a2.tar.xz
gsoc2013-evolution-db1a6f1329c552b0370d295263fe9dbe552dd1a2.tar.zst
gsoc2013-evolution-db1a6f1329c552b0370d295263fe9dbe552dd1a2.zip
Fixes #59333
2004-06-02 Rodrigo Moya <rodrigo@novell.com> Fixes #59333 * gui/dialogs/task-page.c (task_page_fill_widgets): guard against list items being NULL. svn path=/trunk/; revision=26152
Diffstat (limited to 'calendar/gui/dialogs/task-page.c')
-rw-r--r--calendar/gui/dialogs/task-page.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/dialogs/task-page.c b/calendar/gui/dialogs/task-page.c
index 11774827b7..0f234eeeea 100644
--- a/calendar/gui/dialogs/task-page.c
+++ b/calendar/gui/dialogs/task-page.c
@@ -277,7 +277,7 @@ task_page_fill_widgets (CompEditorPage *page, ECalComponent *comp)
e_dialog_editable_set (priv->summary, text.value);
e_cal_component_get_description_list (comp, &l);
- if (l) {
+ if (l && l->data) {
text = *(ECalComponentText *)l->data;
gtk_text_buffer_set_text (gtk_text_view_get_buffer (GTK_TEXT_VIEW (priv->description)),
text.value, -1);