diff options
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-offline-handler.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index fed90c4046..74cdd3f6ba 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2001-05-07 Dan Winship <danw@ximian.com> + + * e-shell-offline-handler.c (update_dialog_clist_hash_foreach): + Fix a free of non-malloc'ed memory introduced by my last change. + 2001-05-07 Jon Trowbridge <trow@ximian.com> * e-shell-view-menu.c (update_offline_menu_item): Changed some diff --git a/shell/e-shell-offline-handler.c b/shell/e-shell-offline-handler.c index 17fd6a6285..9b0c247025 100644 --- a/shell/e-shell-offline-handler.c +++ b/shell/e-shell-offline-handler.c @@ -512,8 +512,6 @@ update_dialog_clist_hash_foreach (void *key, columns[2] = NULL; gtk_clist_prepend (GTK_CLIST (clist), columns); - - g_free (columns[1]); } } |