aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-04-25 03:58:28 +0800
committerDan Winship <danw@src.gnome.org>2000-04-25 03:58:28 +0800
commitd38dcd1631a6017598a78f7cc82a48b50753a911 (patch)
tree103b98e6094fe9e19892ff4f0c77a6facf250f3e
parent98e2091d6287bd28601d49877f1169de1c0dad6c (diff)
downloadgsoc2013-evolution-d38dcd1631a6017598a78f7cc82a48b50753a911.tar
gsoc2013-evolution-d38dcd1631a6017598a78f7cc82a48b50753a911.tar.gz
gsoc2013-evolution-d38dcd1631a6017598a78f7cc82a48b50753a911.tar.bz2
gsoc2013-evolution-d38dcd1631a6017598a78f7cc82a48b50753a911.tar.lz
gsoc2013-evolution-d38dcd1631a6017598a78f7cc82a48b50753a911.tar.xz
gsoc2013-evolution-d38dcd1631a6017598a78f7cc82a48b50753a911.tar.zst
gsoc2013-evolution-d38dcd1631a6017598a78f7cc82a48b50753a911.zip
fix a cut-and-pasto.
* camel-mime-part-utils.c (simple_data_wrapper_construct_from_parser): fix a cut-and-pasto. svn path=/trunk/; revision=2587
-rw-r--r--camel/ChangeLog3
-rw-r--r--camel/camel-mime-part-utils.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index ccca37a671..52a2cce9f2 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,5 +1,8 @@
2000-04-24 Dan Winship <danw@helixcode.com>
+ * camel-mime-part-utils.c
+ (simple_data_wrapper_construct_from_parser): fix a cut-and-pasto.
+
* providers/mbox/camel-mbox-folder.c (_get_message_by_uid): ref
(and sink) the message stream if we're going to unref it later.
Otherwise it could get destroyed while there are still substreams
diff --git a/camel/camel-mime-part-utils.c b/camel/camel-mime-part-utils.c
index 50e9fd29d5..82cff22f5a 100644
--- a/camel/camel-mime-part-utils.c
+++ b/camel/camel-mime-part-utils.c
@@ -141,7 +141,7 @@ simple_data_wrapper_construct_from_parser(CamelDataWrapper *dw, CamelMimeParser
camel_stream_filter_add(filter, fdec);
}
if (fch) {
- camel_mime_filter_reset(fdec);
+ camel_mime_filter_reset(fch);
camel_stream_filter_add(filter, fch);
}
camel_data_wrapper_set_output_stream (dw, (CamelStream *)filter);