diff options
author | Not Zed <NotZed@Ximian.com> | 2002-07-24 23:13:43 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2002-07-24 23:13:43 +0800 |
commit | 9fcbc8f335c4322c6e4167e0356bfb9802e5edb6 (patch) | |
tree | 86ad5969e40e256b8bedc65b813c9563c14cf40a /camel/providers | |
parent | 710ba7ca95b2fec221f7d0fd861e7f1d803aabec (diff) | |
download | gsoc2013-evolution-9fcbc8f335c4322c6e4167e0356bfb9802e5edb6.tar gsoc2013-evolution-9fcbc8f335c4322c6e4167e0356bfb9802e5edb6.tar.gz gsoc2013-evolution-9fcbc8f335c4322c6e4167e0356bfb9802e5edb6.tar.bz2 gsoc2013-evolution-9fcbc8f335c4322c6e4167e0356bfb9802e5edb6.tar.lz gsoc2013-evolution-9fcbc8f335c4322c6e4167e0356bfb9802e5edb6.tar.xz gsoc2013-evolution-9fcbc8f335c4322c6e4167e0356bfb9802e5edb6.tar.zst gsoc2013-evolution-9fcbc8f335c4322c6e4167e0356bfb9802e5edb6.zip |
When writing the summary, use TRUNC flag, duh. Also, write to a temp file
2002-07-25 Not Zed <NotZed@Ximian.com>
* 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 <NotZed@Ximian.com>
* camel-partition-table.c (camel_key_table_next): Didn't unlock if
we exited on an empty key list.
svn path=/trunk/; revision=17570
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/local/camel-mbox-summary.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/camel/providers/local/camel-mbox-summary.c b/camel/providers/local/camel-mbox-summary.c index 3c5222406e..e84875aad0 100644 --- a/camel/providers/local/camel-mbox-summary.c +++ b/camel/providers/local/camel-mbox-summary.c @@ -416,6 +416,7 @@ summary_update(CamelLocalSummary *cls, off_t offset, CamelFolderChangeInfo *chan camel_folder_change_info_remove_uid(changeinfo, camel_message_info_uid(mi)); camel_folder_summary_remove(s, mi); count--; + i--; } camel_folder_summary_info_free(s, mi); } |