aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--calendar/ChangeLog7
-rw-r--r--calendar/gui/dialogs/task-page.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index ac012d150a..5a9311f8a4 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,10 @@
+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.
+
2004-06-02 Larry Ewing <lewing@ximian.com>
* gui/e-tasks.c (table_drag_data_delete): add a drag delete handler.
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);