diff options
-rw-r--r-- | mail/ChangeLog | 4 | ||||
-rw-r--r-- | mail/mail-ops.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 4366a088d4..215db24b7b 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,7 @@ +2000-08-04 Peter Williams <peterw@helixcode.com> + + * mail-ops.c (move_msg): Fixed a pretty silly uninitialization bug. + 2000-08-04 Ettore Perazzoli <ettore@helixcode.com> * message-list.c (message_list_regenerate): Free the GPtrArray diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 38d938028d..0bb82c843c 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -795,7 +795,7 @@ move_msg (GtkWidget *button, gpointer user_data) static char *last = NULL; if (!last) - g_strdup (""); + last = g_strdup (""); evolution_shell_client_user_select_folder (global_shell_client, _("Move message(s) to"), |