diff options
author | Peter Williams <peterw@src.gnome.org> | 2000-08-04 22:13:27 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2000-08-04 22:13:27 +0800 |
commit | ce5a8e3224fad1c20760809198a508e28eeb4c04 (patch) | |
tree | 7b5a1c7de121f8a53ba0165a4a8e2d3619a749ed | |
parent | 4af92f212d061a40acff6cf351a7f3293e5adbae (diff) | |
download | gsoc2013-evolution-ce5a8e3224fad1c20760809198a508e28eeb4c04.tar gsoc2013-evolution-ce5a8e3224fad1c20760809198a508e28eeb4c04.tar.gz gsoc2013-evolution-ce5a8e3224fad1c20760809198a508e28eeb4c04.tar.bz2 gsoc2013-evolution-ce5a8e3224fad1c20760809198a508e28eeb4c04.tar.lz gsoc2013-evolution-ce5a8e3224fad1c20760809198a508e28eeb4c04.tar.xz gsoc2013-evolution-ce5a8e3224fad1c20760809198a508e28eeb4c04.tar.zst gsoc2013-evolution-ce5a8e3224fad1c20760809198a508e28eeb4c04.zip |
I pity da foo that committed this bug!
svn path=/trunk/; revision=4528
-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"), |