2003-11-03  Harry Lu  <harry.lu@sun.com>

        Fix for #50387.

        * importers/icalendar-importer.c (support_format_fn):
        Call icalcomponent_is_valid() to check whether the returned
        icalcomponent is valid.

svn path=/trunk/; revision=23165
This commit is contained in:
Harry Lu
2003-11-03 03:03:11 +00:00
committed by Harry Lu
parent 1a80fb97d5
commit 77340f1520
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2003-11-03 Harry Lu <harry.lu@sun.com>
Fix for #50387.
* importers/icalendar-importer.c (support_format_fn):
Call icalcomponent_is_valid() to check whether the returned
icalcomponent is valid.
2003-10-31 Hans Petter Jansson <hpj@ximian.com>
* gui/calendar-component.c (calendar_component_init): Add the webcal

View File

@ -315,8 +315,11 @@ support_format_fn (EvolutionImporter *importer,
if (contents) {
icalcomp = icalparser_parse_string (contents);
if (icalcomp) {
if (icalcomponent_is_valid (icalcomp))
ret = TRUE;
else
ret = FALSE;
icalcomponent_free (icalcomp);
ret = TRUE;
}
}