From 7f01f3e1d98207f8101016091c997d4c18ffb152 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Mon, 14 Aug 2000 01:00:22 +0000 Subject: Use CORBA_Object_release() instead of CORBA_free() as appropriate, you doofus. svn path=/trunk/; revision=4830 --- mail/ChangeLog | 5 +++++ mail/mail-ops.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 1ada639b2a..cb3301af21 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2000-08-13 Ettore Perazzoli + + * mail-ops.c (cleanup_create_folder): Release the listener object + with `CORBA_Object_release()', not `CORBA_free()'. + 2000-08-13 Ettore Perazzoli * main.c (main): Set the signal handlers for `SIGSEGV' and diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 787b23bd43..59c2f66ecc 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -1376,7 +1376,7 @@ cleanup_create_folder (gpointer in_data, gpointer op_data, camel_exception_set (ex, CAMEL_EXCEPTION_SYSTEM, "Exception while reporting result to shell " "component listener."); - CORBA_free (input->listener); + CORBA_Object_release (input->listener, &ev); g_free (input->uri); g_free (input->type); -- cgit