diff options
author | Rodrigo Moya <rodrigo@novell.com> | 2004-06-02 19:28:39 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2004-06-02 19:28:39 +0800 |
commit | db1a6f1329c552b0370d295263fe9dbe552dd1a2 (patch) | |
tree | 3ebc41b4b06e6509e8da8f67f60ed527b1344f37 /calendar | |
parent | 5786eb64a18ed1302ac6e10dc8aea2cc2d346ba1 (diff) | |
download | gsoc2013-evolution-db1a6f1329c552b0370d295263fe9dbe552dd1a2.tar.gz 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')
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/dialogs/task-page.c | 2 |
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); |