diff options
author | Dan Winship <danw@src.gnome.org> | 2000-07-11 04:40:29 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-07-11 04:40:29 +0800 |
commit | 7e747adb874fdde07eeea8aba89040c854422fb3 (patch) | |
tree | 54376f8b990cbe3a232764cb6e5e5d8708b35004 | |
parent | dd38706a9233bcda550f2fbc5c2df0dfe92f5fe5 (diff) | |
download | gsoc2013-evolution-7e747adb874fdde07eeea8aba89040c854422fb3.tar gsoc2013-evolution-7e747adb874fdde07eeea8aba89040c854422fb3.tar.gz gsoc2013-evolution-7e747adb874fdde07eeea8aba89040c854422fb3.tar.bz2 gsoc2013-evolution-7e747adb874fdde07eeea8aba89040c854422fb3.tar.lz gsoc2013-evolution-7e747adb874fdde07eeea8aba89040c854422fb3.tar.xz gsoc2013-evolution-7e747adb874fdde07eeea8aba89040c854422fb3.tar.zst gsoc2013-evolution-7e747adb874fdde07eeea8aba89040c854422fb3.zip |
Don't multiply free dest_url.
* mail-ops.c (real_fetch_mail): Don't multiply free dest_url.
svn path=/trunk/; revision=4049
-rw-r--r-- | mail/ChangeLog | 2 | ||||
-rw-r--r-- | mail/mail-ops.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index c96a549a48..9431c7eefc 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,7 @@ 2000-07-10 Dan Winship <danw@helixcode.com> + * mail-ops.c (real_fetch_mail): Don't multiply free dest_url. + * message-list.c (message_list_select): Update message_list_select_next to do either next or previous. diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 63becc28b7..b4881b5a20 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -321,8 +321,6 @@ real_fetch_mail (gpointer user_data) gtk_object_unref (GTK_OBJECT (filter)); if (url) g_free (url); - if (dest_url) - g_free (dest_url); if (folder) { camel_folder_sync (folder, TRUE, ex); |