diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-08-14 09:00:22 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-08-14 09:00:22 +0800 |
commit | 7f01f3e1d98207f8101016091c997d4c18ffb152 (patch) | |
tree | 661d1fa7d7a28cd95e640f01716983a70161fafe /mail/mail-ops.c | |
parent | 079a4f233c9ab86629e380387219d3168828900f (diff) | |
download | gsoc2013-evolution-7f01f3e1d98207f8101016091c997d4c18ffb152.tar gsoc2013-evolution-7f01f3e1d98207f8101016091c997d4c18ffb152.tar.gz gsoc2013-evolution-7f01f3e1d98207f8101016091c997d4c18ffb152.tar.bz2 gsoc2013-evolution-7f01f3e1d98207f8101016091c997d4c18ffb152.tar.lz gsoc2013-evolution-7f01f3e1d98207f8101016091c997d4c18ffb152.tar.xz gsoc2013-evolution-7f01f3e1d98207f8101016091c997d4c18ffb152.tar.zst gsoc2013-evolution-7f01f3e1d98207f8101016091c997d4c18ffb152.zip |
Use CORBA_Object_release() instead of CORBA_free() as appropriate, you
doofus.
svn path=/trunk/; revision=4830
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r-- | mail/mail-ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |