diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-05-25 06:43:31 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-05-25 06:43:31 +0800 |
commit | 34d05a6f6f0faefb5dffa2970cc6624ef886beb0 (patch) | |
tree | 219ff1a351fdeeccfd3612edb4f8412035a38d8d /camel/providers/imap/camel-imap-store.c | |
parent | f1e6e913a674ce5deb47611a3d1d2ed3047a644c (diff) | |
download | gsoc2013-evolution-34d05a6f6f0faefb5dffa2970cc6624ef886beb0.tar.gz gsoc2013-evolution-34d05a6f6f0faefb5dffa2970cc6624ef886beb0.tar.zst gsoc2013-evolution-34d05a6f6f0faefb5dffa2970cc6624ef886beb0.zip |
Helps if we allocate enough space here. Also, start smoking the same
2002-05-24 Jeffrey Stedfast <fejj@ximian.com>
* providers/imap/camel-imap-folder.c (content_info_get_part_spec):
Helps if we allocate enough space here. Also, start smoking the
same purple flavoured IMAP crack when counting parts (parts don't
count if their parent part is a message/* part with a parent
part). Fixes bug #25260.
svn path=/trunk/; revision=17014
Diffstat (limited to 'camel/providers/imap/camel-imap-store.c')
-rw-r--r-- | camel/providers/imap/camel-imap-store.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c index b97f8c0f1a..f45531145d 100644 --- a/camel/providers/imap/camel-imap-store.c +++ b/camel/providers/imap/camel-imap-store.c @@ -2271,7 +2271,7 @@ camel_imap_store_readline (CamelImapStore *store, char **dest, CamelException *e #if d(!)0 if (camel_verbose_debug) { fprintf (stderr, "received: "); - fwrite (*dest, 1, nread, stderr); + fwrite (ba->data, 1, ba->len, stderr); } #endif |