diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-07-12 04:19:28 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-07-12 04:19:28 +0800 |
commit | 3d319ce9ef8862ec4245ab58946ff8ff66c00578 (patch) | |
tree | 057014bf89d0735f1730105e80d135d0aa1512d3 /camel/providers | |
parent | a389093a50a28b57e2709ecb896d7c9368291012 (diff) | |
download | gsoc2013-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/providers')
-rw-r--r-- | camel/providers/imap/camel-imap-folder.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |