aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--shell/ChangeLog6
-rw-r--r--shell/e-shell-view.c2
-rw-r--r--shell/e-shell.c2
3 files changed, 10 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index de85899b61..70b5f39ec3 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,9 @@
+2000-06-02 Christopher James Lahey <clahey@helixcode.com>
+
+ * e-shell-view.c: Free the uri variable.
+
+ * e-shell.c: Free the local_directory variable.
+
2000-06-02 Ettore Perazzoli <ettore@helixcode.com>
* main.c (view_delete_event_cb): New callback for the
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c
index 4465b00693..4b419937d0 100644
--- a/shell/e-shell-view.c
+++ b/shell/e-shell-view.c
@@ -343,6 +343,8 @@ destroy (GtkObject *object)
g_hash_table_foreach (priv->uri_to_control, hash_forall_destroy_control, NULL);
g_hash_table_destroy (priv->uri_to_control);
+
+ g_free (priv->uri);
g_free (priv);
diff --git a/shell/e-shell.c b/shell/e-shell.c
index af28df115a..909ed0afd2 100644
--- a/shell/e-shell.c
+++ b/shell/e-shell.c
@@ -244,6 +244,8 @@ destroy (GtkObject *object)
shell = E_SHELL (object);
priv = shell->priv;
+ g_free (priv->local_directory);
+
if (priv->storage_set != NULL)
gtk_object_unref (GTK_OBJECT (priv->storage_set));