diff options
author | 5 <NotZed@Ximian.com> | 2001-09-26 06:19:40 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-09-26 06:19:40 +0800 |
commit | 3420538a5c595b67da2a59c590a7aa628046ffb7 (patch) | |
tree | b2616a6ee3d48f994a47245c5d487804bf21b7f2 /camel/camel-folder.c | |
parent | ba5b1b6be7d3beed85c1f6b51d5808f9a7d72b5f (diff) | |
download | gsoc2013-evolution-3420538a5c595b67da2a59c590a7aa628046ffb7.tar.gz gsoc2013-evolution-3420538a5c595b67da2a59c590a7aa628046ffb7.tar.zst gsoc2013-evolution-3420538a5c595b67da2a59c590a7aa628046ffb7.zip |
Only unref info if we got it.
2001-09-25 <NotZed@Ximian.com>
* camel-folder.c (get_unread_message_count): Only unref info if we
got it.
svn path=/trunk/; revision=13130
Diffstat (limited to 'camel/camel-folder.c')
-rw-r--r-- | camel/camel-folder.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/camel/camel-folder.c b/camel/camel-folder.c index ec23a55c71..ead3e969be 100644 --- a/camel/camel-folder.c +++ b/camel/camel-folder.c @@ -436,10 +436,11 @@ get_unread_message_count(CamelFolder *folder) for (i=0; i<count; i++) { CamelMessageInfo *info = camel_folder_summary_index(folder->summary, i); - if (info && !(info->flags & CAMEL_MESSAGE_SEEN)) - unread++; - - camel_folder_summary_info_free(folder->summary, info); + if (info) { + if (!(info->flags & CAMEL_MESSAGE_SEEN)) + unread++; + camel_folder_summary_info_free(folder->summary, info); + } } return unread; |