diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-11 05:39:53 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-11 05:39:53 +0800 |
commit | 17bdb9c55fc2f204ec25757cce7937dc03b89dc2 (patch) | |
tree | 1efdcbb923ea7d5b5f6b69b335e50981f71eb4db | |
parent | 472a6e0fa01103936680f652a4551cbf455efdef (diff) | |
download | gsoc2013-evolution-17bdb9c55fc2f204ec25757cce7937dc03b89dc2.tar gsoc2013-evolution-17bdb9c55fc2f204ec25757cce7937dc03b89dc2.tar.gz gsoc2013-evolution-17bdb9c55fc2f204ec25757cce7937dc03b89dc2.tar.bz2 gsoc2013-evolution-17bdb9c55fc2f204ec25757cce7937dc03b89dc2.tar.lz gsoc2013-evolution-17bdb9c55fc2f204ec25757cce7937dc03b89dc2.tar.xz gsoc2013-evolution-17bdb9c55fc2f204ec25757cce7937dc03b89dc2.tar.zst gsoc2013-evolution-17bdb9c55fc2f204ec25757cce7937dc03b89dc2.zip |
(connect_to_shell): CORBA_Object_release() the CORBA shell.
(connect_to_shell):
CORBA_Object_release() the CORBA shell.
svn path=/trunk/; revision=19416
-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. |