diff options
-rw-r--r-- | shell/ChangeLog | 4 | ||||
-rw-r--r-- | shell/e-shell-view.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 72fdc403b6..e5a2a68759 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,7 @@ +2001-09-10 Dan Winship <danw@ximian.com> + + * e-shell-view.c (socket_destroy_cb): Oops. Remove duplicate free. + 2001-09-09 Dan Winship <danw@ximian.com> Purify run. All small leaks. diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index 932f45bc32..2182c53d8d 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -1738,8 +1738,6 @@ socket_destroy_cb (GtkWidget *socket_widget, gpointer data) /* We were actively viewing the component that just crashed, so flip to the default URI */ if (viewing_closed_uri) e_shell_view_display_uri (shell_view, E_SHELL_VIEW_DEFAULT_URI); - - g_free (copy_of_uri); } |