From 6af5ca43fa2725b1254a90085dd1c6b856c41b24 Mon Sep 17 00:00:00 2001 From: Iain Holmes Date: Fri, 26 Jan 2001 00:29:20 +0000 Subject: Yes, some more screw ups... This cvs thing, I don't get it, I wrap my hand in plastic to try to look through it. svn path=/trunk/; revision=7833 --- mail/message-list.c | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) (limited to 'mail/message-list.c') diff --git a/mail/message-list.c b/mail/message-list.c index cf81a89a40..46e3b772a5 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -2332,7 +2332,6 @@ static void hide_save_state(MessageList *ml) fclose(out); } - g_free (filename); MESSAGE_LIST_UNLOCK(ml, hide_lock); } @@ -2410,7 +2409,7 @@ static void regen_list_regen(struct _mail_msg *mm) if (m->ml->hidden) { for (i=0;ilen;i++) { if (g_hash_table_lookup(m->ml->hidden, uids->pdata[i]) == 0) - g_ptr_array_add(uidnew, g_strdup (uids->pdata[i])); + g_ptr_array_add(uidnew, uids->pdata[i]); } } @@ -2430,14 +2429,13 @@ static void regen_list_regen(struct _mail_msg *mm) start = MAX(start, 0); end = MIN(end, uidnew->len); for (i=start;ipdata[i])); + g_ptr_array_add(uid2, uidnew->pdata[i]); } g_ptr_array_free(uidnew, TRUE); uidnew = uid2; } m->realuids = uids; - m->uids = uidnew; } else { m->realuids = NULL; @@ -2472,21 +2470,16 @@ static void regen_list_free(struct _mail_msg *mm) /* work out if we have aux uid's to free, otherwise free the real ones */ uids = m->realuids; if (uids) { - if (m->uids) { - g_print ("Freeing\n"); - camel_folder_free_uids(m->ml->folder, m->uids); - g_print ("Freed\n"); -/* g_ptr_array_free(m->uids, TRUE); */ - } + if (m->uids) + g_ptr_array_free(m->uids, TRUE); } else uids = m->uids; if (uids) { if (m->search) camel_folder_search_free(m->ml->folder, uids); - else { + else camel_folder_free_uids(m->ml->folder, uids); - } } /* update what we have as our search string */ -- cgit v1.2.3