diff options
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/importers/icalendar-importer.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index b2ac5bb2a8..7adcf49a47 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2003-01-10 Ettore Perazzoli <ettore@ximian.com> + + * importers/icalendar-importer.c (connect_to_shell): + CORBA_Object_release() the CORBA shell. + 2003-01-09 Dan Winship <danw@ximian.com> * gui/dialogs/recurrence-page.c (make_recur_month_num_submenu, diff --git a/calendar/importers/icalendar-importer.c b/calendar/importers/icalendar-importer.c index 0300201ca4..6899679bc0 100644 --- a/calendar/importers/icalendar-importer.c +++ b/calendar/importers/icalendar-importer.c @@ -99,6 +99,9 @@ connect_to_shell (ICalImporter *ici) } ici->shell_client = evolution_shell_client_new (corba_shell); + + CORBA_Object_release (corba_shell, &ev); + CORBA_exception_free (&ev); } /* This reads in an entire file and returns it. It returns NULL on error. |