From ce5a8e3224fad1c20760809198a508e28eeb4c04 Mon Sep 17 00:00:00 2001 From: Peter Williams Date: Fri, 4 Aug 2000 14:13:27 +0000 Subject: I pity da foo that committed this bug! svn path=/trunk/; revision=4528 --- mail/ChangeLog | 4 ++++ mail/mail-ops.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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 + + * mail-ops.c (move_msg): Fixed a pretty silly uninitialization bug. + 2000-08-04 Ettore Perazzoli * 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"), -- cgit v1.2.3