diff options
author | Dan Winship <danw@src.gnome.org> | 2000-09-08 03:31:05 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-09-08 03:31:05 +0800 |
commit | cb05e36a627060826f332cb3b35129e9af765923 (patch) | |
tree | b522ac3878791d3f68ec912de453c9231beb705f /mail | |
parent | 646590a8c73292994ce063c9ad826a9794b90f20 (diff) | |
download | gsoc2013-evolution-cb05e36a627060826f332cb3b35129e9af765923.tar gsoc2013-evolution-cb05e36a627060826f332cb3b35129e9af765923.tar.gz gsoc2013-evolution-cb05e36a627060826f332cb3b35129e9af765923.tar.bz2 gsoc2013-evolution-cb05e36a627060826f332cb3b35129e9af765923.tar.lz gsoc2013-evolution-cb05e36a627060826f332cb3b35129e9af765923.tar.xz gsoc2013-evolution-cb05e36a627060826f332cb3b35129e9af765923.tar.zst gsoc2013-evolution-cb05e36a627060826f332cb3b35129e9af765923.zip |
Fix previous fix. (Free the uids, just do it correctly.)
* mail-ops.c (do_fetch_mail): Fix previous fix. (Free the uids,
just do it correctly.)
svn path=/trunk/; revision=5238
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-ops.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 8def53ae4a..58c5f4226d 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2000-09-07 Dan Winship <danw@helixcode.com> + + * mail-ops.c (do_fetch_mail): Fix previous fix. (Free the uids, + just do it correctly.) + 2000-09-07 Jeffrey Stedfast <fejj@helixcode.com> * mail-ops.c (do_fetch_mail): Don't free uids, let the camel diff --git a/mail/mail-ops.c b/mail/mail-ops.c index d4592aa251..1bec67ebbf 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -180,6 +180,7 @@ do_fetch_mail (gpointer in_data, gpointer op_data, CamelException *ex) } camel_object_unref (CAMEL_OBJECT (message)); } + camel_folder_free_uids (folder, uids); data->empty = FALSE; } |