aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-07-12 04:19:28 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-07-12 04:19:28 +0800
commit3d319ce9ef8862ec4245ab58946ff8ff66c00578 (patch)
tree057014bf89d0735f1730105e80d135d0aa1512d3 /camel
parenta389093a50a28b57e2709ecb896d7c9368291012 (diff)
downloadgsoc2013-evolution-3d319ce9ef8862ec4245ab58946ff8ff66c00578.tar
gsoc2013-evolution-3d319ce9ef8862ec4245ab58946ff8ff66c00578.tar.gz
gsoc2013-evolution-3d319ce9ef8862ec4245ab58946ff8ff66c00578.tar.bz2
gsoc2013-evolution-3d319ce9ef8862ec4245ab58946ff8ff66c00578.tar.lz
gsoc2013-evolution-3d319ce9ef8862ec4245ab58946ff8ff66c00578.tar.xz
gsoc2013-evolution-3d319ce9ef8862ec4245ab58946ff8ff66c00578.tar.zst
gsoc2013-evolution-3d319ce9ef8862ec4245ab58946ff8ff66c00578.zip
This shouldn't return NULL, it should return g_ptr_array_new () so the
2000-07-11 Jeffrey Stedfast <fejj@helixcode.com> * providers/imap/camel-imap-folder.c (imap_search_by_expression): This shouldn't return NULL, it should return g_ptr_array_new () so the mailer gets what it expects. svn path=/trunk/; revision=4095
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog6
-rw-r--r--camel/providers/imap/camel-imap-folder.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 4cc528c62d..e5e9bc5f3c 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,9 @@
+2000-07-11 Jeffrey Stedfast <fejj@helixcode.com>
+
+ * providers/imap/camel-imap-folder.c (imap_search_by_expression):
+ This shouldn't return NULL, it should return g_ptr_array_new ()
+ so the mailer gets what it expects.
+
2000-07-10 Jeffrey Stedfast <fejj@helixcode.com>
* camel-folder-summary.c (camel_folder_summary_decode_string):
diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c
index 53c77e2f1e..e2929eb83c 100644
--- a/camel/providers/imap/camel-imap-folder.c
+++ b/camel/providers/imap/camel-imap-folder.c
@@ -1377,7 +1377,7 @@ imap_get_message_info (CamelFolder *folder, const char *uid)
static GPtrArray *
imap_search_by_expression (CamelFolder *folder, const char *expression, CamelException *ex)
{
- return NULL;
+ return g_ptr_array_new ();
#if 0
/* NOTE: This is experimental code... */
CamelImapFolder *imap_folder = CAMEL_IMAP_FOLDER (folder);