aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-multipart.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-05-11 04:14:12 +0800
committerDan Winship <danw@src.gnome.org>2000-05-11 04:14:12 +0800
commit128d255031170115e4f2427294beff9ac1d04179 (patch)
treebbcc7a8f37779340a4804ba596cd3137ca036066 /camel/camel-multipart.c
parent497516ec005a8c27065e003093be6d18470fc58d (diff)
downloadgsoc2013-evolution-128d255031170115e4f2427294beff9ac1d04179.tar
gsoc2013-evolution-128d255031170115e4f2427294beff9ac1d04179.tar.gz
gsoc2013-evolution-128d255031170115e4f2427294beff9ac1d04179.tar.bz2
gsoc2013-evolution-128d255031170115e4f2427294beff9ac1d04179.tar.lz
gsoc2013-evolution-128d255031170115e4f2427294beff9ac1d04179.tar.xz
gsoc2013-evolution-128d255031170115e4f2427294beff9ac1d04179.tar.zst
gsoc2013-evolution-128d255031170115e4f2427294beff9ac1d04179.zip
fix a stupid typo. Thank you, C.
* camel-multipart.c (write_to_stream): fix a stupid typo. Thank you, C. * camel-mime-part.c (write_to_stream): don't ref the stream before wrapper a filter around it, since nothing will ever unref it. svn path=/trunk/; revision=2978
Diffstat (limited to 'camel/camel-multipart.c')
-rw-r--r--camel/camel-multipart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-multipart.c b/camel/camel-multipart.c
index 347eb3bdcc..8155ce1229 100644
--- a/camel/camel-multipart.c
+++ b/camel/camel-multipart.c
@@ -444,7 +444,7 @@ write_to_stream (CamelDataWrapper *data_wrapper, CamelStream *stream,
return -1;
total += camel_data_wrapper_write_to_stream (CAMEL_DATA_WRAPPER (node->data), stream, ex);
- if (camel_exception_is_set (ex));
+ if (camel_exception_is_set (ex))
return -1;
node = node->next;
}