aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-meeting-list-view.c
diff options
context:
space:
mode:
authorUmeshtej <umeshtej@gawab.com>2004-05-10 22:38:47 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2004-05-10 22:38:47 +0800
commit4416d2361f7e9a9bde055a673b4c9d72a84855b8 (patch)
treecc18f1fc2aefba992044b43e26efe2a508592e7a /calendar/gui/e-meeting-list-view.c
parentb14d9b05bb3a1836083e07482ea0fe9fbfd8cadf (diff)
downloadgsoc2013-evolution-4416d2361f7e9a9bde055a673b4c9d72a84855b8.tar
gsoc2013-evolution-4416d2361f7e9a9bde055a673b4c9d72a84855b8.tar.gz
gsoc2013-evolution-4416d2361f7e9a9bde055a673b4c9d72a84855b8.tar.bz2
gsoc2013-evolution-4416d2361f7e9a9bde055a673b4c9d72a84855b8.tar.lz
gsoc2013-evolution-4416d2361f7e9a9bde055a673b4c9d72a84855b8.tar.xz
gsoc2013-evolution-4416d2361f7e9a9bde055a673b4c9d72a84855b8.tar.zst
gsoc2013-evolution-4416d2361f7e9a9bde055a673b4c9d72a84855b8.zip
Fixes #58014
2004-05-07 Umeshtej <umeshtej@gawab.com> Fixes #58014 * gui/e-meeting-list-view.c (process_section):Run the for loop for the number of elements in cards. svn path=/trunk/; revision=25841
Diffstat (limited to 'calendar/gui/e-meeting-list-view.c')
-rw-r--r--calendar/gui/e-meeting-list-view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/e-meeting-list-view.c b/calendar/gui/e-meeting-list-view.c
index a4e8850eea..ac3b3f2697 100644
--- a/calendar/gui/e-meeting-list-view.c
+++ b/calendar/gui/e-meeting-list-view.c
@@ -334,7 +334,7 @@ process_section (EMeetingListView *view, EDestination **cards, icalparameter_rol
int i;
priv = view->priv;
- for (i = 0; i < G_N_ELEMENTS (cards); i++) {
+ for (i = 0; cards[i] != NULL; i++) {
const char *name, *attendee = NULL;
char *attr = NULL;