aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-folder.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2001-02-06 10:38:19 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-02-06 10:38:19 +0800
commitb8af62e80361d12c4ecc9279817be30df2ebf538 (patch)
tree8e4835aa83fcada2184825d51a0fbccdec1e4eb7 /camel/camel-folder.c
parent2fd6f5acb552cbdc7a65536260b973512bb845b6 (diff)
downloadgsoc2013-evolution-b8af62e80361d12c4ecc9279817be30df2ebf538.tar
gsoc2013-evolution-b8af62e80361d12c4ecc9279817be30df2ebf538.tar.gz
gsoc2013-evolution-b8af62e80361d12c4ecc9279817be30df2ebf538.tar.bz2
gsoc2013-evolution-b8af62e80361d12c4ecc9279817be30df2ebf538.tar.lz
gsoc2013-evolution-b8af62e80361d12c4ecc9279817be30df2ebf538.tar.xz
gsoc2013-evolution-b8af62e80361d12c4ecc9279817be30df2ebf538.tar.zst
gsoc2013-evolution-b8af62e80361d12c4ecc9279817be30df2ebf538.zip
Removed unwanted header. It was never put in for a reason. Stop fixing
2001-02-06 Not Zed <NotZed@Ximian.com> * camel-search-private.c: Removed unwanted header. It was never put in for a reason. Stop fixing irrelevant warnings. (camel_ustrstrcase): Our own strstrcase impl for utf8 strings. (camel_ustrcasecmp): Ditto for strcasecmp. (camel_ustrncasecmp): And strncasecmp. (utf8_get): Simpler interface to utf8 string processing. (camel_search_header_match): Use the new things. 2001-02-05 Not Zed <NotZed@Ximian.com> * camel-folder.c (get_summary): Removed some old variables/a small memleak. (free_summary): Removed old variables. * camel-mime-utils.c (header_raw_check_mailing_list): New utility function to get the mailing list (if any) that a set of headers came from. svn path=/trunk/; revision=8008
Diffstat (limited to 'camel/camel-folder.c')
-rw-r--r--camel/camel-folder.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/camel/camel-folder.c b/camel/camel-folder.c
index 17d65097b5..e9d72d879d 100644
--- a/camel/camel-folder.c
+++ b/camel/camel-folder.c
@@ -924,9 +924,6 @@ camel_folder_free_uids (CamelFolder *folder, GPtrArray *array)
static GPtrArray *
get_summary(CamelFolder *folder)
{
- GPtrArray *res = g_ptr_array_new();
- int i, count;
-
g_assert(folder->summary != NULL);
return camel_folder_summary_array(folder->summary);
@@ -957,8 +954,6 @@ camel_folder_get_summary (CamelFolder *folder)
static void
free_summary(CamelFolder *folder, GPtrArray *summary)
{
- int i;
-
g_assert(folder->summary != NULL);
camel_folder_summary_array_free(folder->summary, summary);