This shouldn't return NULL, it should return g_ptr_array_new () so the
authorJeffrey Stedfast <fejj@helixcode.com>
Tue, 11 Jul 2000 20:19:28 +0000 (20:19 +0000)
committerJeffrey Stedfast <fejj@src.gnome.org>
Tue, 11 Jul 2000 20:19:28 +0000 (20:19 +0000)
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.

camel/ChangeLog
camel/providers/imap/camel-imap-folder.c

index 4cc528c..e5e9bc5 100644 (file)
@@ -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): 
index 53c77e2..e2929eb 100644 (file)
@@ -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);