talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 68da8a3e5f60f04fca65e2cb3c58384d530653da
parent cbcbd9f670977dc662cc57ffc16c9da0785d09e5
Author: Colin Leroy <colin@colino.net>
Date:   Thu,  1 May 2014 18:56:21 +0200

Really fix leak (Thanks!)

Diffstat:
Msrc/imap.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/imap.c b/src/imap.c @@ -1595,8 +1595,8 @@ static gboolean imap_is_msg_fully_cached(Folder *folder, FolderItem *item, gint return TRUE; } size = get_file_size_with_crs(filename); - g_free(filename); } + g_free(filename); debug_print("msg %d cached, has size %d, full should be %d.\n", uid, size, cached->size); if (cached && size >= cached->size) { cached->total_size = cached->size;