diff options
author | JP Rosevear <jpr@ximian.com> | 2001-08-18 02:04:13 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-08-18 02:04:13 +0800 |
commit | ba8d4eb49a8a67d3eb123d2c111a9acbe2cb6273 (patch) | |
tree | becfd4537c028018838a107a53c9e3be35c8e3d9 | |
parent | 4267d55b9fe5bf6c5c273b2c2a591626f6f34487 (diff) | |
download | gsoc2013-evolution-ba8d4eb49a8a67d3eb123d2c111a9acbe2cb6273.tar gsoc2013-evolution-ba8d4eb49a8a67d3eb123d2c111a9acbe2cb6273.tar.gz gsoc2013-evolution-ba8d4eb49a8a67d3eb123d2c111a9acbe2cb6273.tar.bz2 gsoc2013-evolution-ba8d4eb49a8a67d3eb123d2c111a9acbe2cb6273.tar.lz gsoc2013-evolution-ba8d4eb49a8a67d3eb123d2c111a9acbe2cb6273.tar.xz gsoc2013-evolution-ba8d4eb49a8a67d3eb123d2c111a9acbe2cb6273.tar.zst gsoc2013-evolution-ba8d4eb49a8a67d3eb123d2c111a9acbe2cb6273.zip |
destroy the addresses (clean_up): don't free the addresses, we need them
2001-08-17 JP Rosevear <jpr@ximian.com>
* gui/e-itip-control.c (destroy): destroy the addresses
(clean_up): don't free the addresses, we need them
svn path=/trunk/; revision=12164
-rw-r--r-- | calendar/gui/e-itip-control.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 689e0c6b3e..d1cfe95c5d 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -288,9 +288,6 @@ clean_up (EItipControl *itip) priv->current = 0; priv->total = 0; - itip_addresses_free (priv->addresses); - priv->addresses = NULL; - priv->my_address = NULL; g_free (priv->from_address); priv->from_address = NULL; @@ -305,6 +302,9 @@ destroy (GtkObject *obj) priv = itip->priv; clean_up (itip); + + itip_addresses_free (priv->addresses); + priv->addresses = NULL; gtk_object_unref (GTK_OBJECT (priv->event_client)); gtk_object_unref (GTK_OBJECT (priv->task_client)); |