diff options
author | Sarfraaz Ahmed <asarfraaz@novell.com> | 2004-02-05 14:28:56 +0800 |
---|---|---|
committer | Nicel KM <mnicel@src.gnome.org> | 2004-02-05 14:28:56 +0800 |
commit | bb84f6e3e79b607b189dd4b114752013c42db1fa (patch) | |
tree | 38f0b5f16de468603a717fb4d24273bc421f9d23 /calendar | |
parent | d639971d8a52635c6edf63d4f1851b5bc049f895 (diff) | |
download | gsoc2013-evolution-bb84f6e3e79b607b189dd4b114752013c42db1fa.tar.gz gsoc2013-evolution-bb84f6e3e79b607b189dd4b114752013c42db1fa.tar.zst gsoc2013-evolution-bb84f6e3e79b607b189dd4b114752013c42db1fa.zip |
Fixes #53388 added a check for NULL
2004-02-05 Sarfraaz Ahmed <asarfraaz@novell.com>
Fixes #53388
* gui/e-itip-control.c (get_next): added a check for NULL
svn path=/trunk/; revision=24627
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/e-itip-control.c | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index e65c820df4..a79f807539 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2004-02-05 Sarfraaz Ahmed <asarfraaz@novell.com> + + Fixes #53388 + + * gui/e-itip-control.c (get_next): added a check for NULL + + 2004-02-04 JP Rosevear <jpr@ximian.com> * importers/icalendar-importer.c (gnome_calendar_import_data_fn): diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index c3a718e834..0f5e7f29d8 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -1364,6 +1364,8 @@ get_next (icalcompiter *iter) do { icalcompiter_next (iter); ret = icalcompiter_deref (iter); + if (ret == NULL) + break; kind = icalcomponent_isa (ret); } while (ret != NULL && kind != ICAL_VEVENT_COMPONENT |