From 9fcbc8f335c4322c6e4167e0356bfb9802e5edb6 Mon Sep 17 00:00:00 2001 From: Not Zed Date: Wed, 24 Jul 2002 15:13:43 +0000 Subject: When writing the summary, use TRUNC flag, duh. Also, write to a temp file 2002-07-25 Not Zed * camel-folder-summary.c (camel_folder_summary_save): When writing the summary, use TRUNC flag, duh. Also, write to a temp file first, and rename when closed successfully, and check ferror() and fclose() against 0 rather than -1. * providers/local/camel-mbox-summary.c (summary_update): Decrement i if we remove the summary item so we dont skip every 2nd one. * camel-mime-utils.c (header_decode_mailbox): Use rfc2047_decode_word explicitly incase we just found an encoded word. Stops us re-decoding the string twice, which fixes memory corruption in #26330 when the HUGE string is used later. 2002-07-24 Not Zed * camel-partition-table.c (camel_key_table_next): Didn't unlock if we exited on an empty key list. svn path=/trunk/; revision=17570 --- camel/camel-mime-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'camel/camel-mime-utils.c') diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c index 1f3c10cfc6..e594a43ed4 100644 --- a/camel/camel-mime-utils.c +++ b/camel/camel-mime-utils.c @@ -2487,7 +2487,7 @@ header_decode_mailbox(const char **in) g_free(text); /* or maybe that we've added up a bunch of broken bits to make an encoded word */ - text = header_decode_string(name->str, NULL); + text = rfc2047_decode_word(name->str, name->len); if (text) { g_string_truncate(name, 0); g_string_append(name, text); -- cgit v1.2.3