evolution r37244 - trunk/mail
- From: mcrha svn gnome org
- To: svn-commits-list gnome org
- Subject: evolution r37244 - trunk/mail
- Date: Wed, 11 Feb 2009 09:54:05 +0000 (UTC)
Author: mcrha
Date: Wed Feb 11 09:54:05 2009
New Revision: 37244
URL: http://svn.gnome.org/viewvc/evolution?rev=37244&view=rev
Log:
2009-02-11 Milan Crha <mcrha redhat com>
** Fix for bug #333716
* em-format-html.c: (emfh_gethttp):
Do not store incomplete or broken files in a cache.
Modified:
trunk/mail/ChangeLog
trunk/mail/em-format-html.c
Modified: trunk/mail/em-format-html.c
==============================================================================
--- trunk/mail/em-format-html.c (original)
+++ trunk/mail/em-format-html.c Wed Feb 11 09:54:05 2009
@@ -533,17 +533,12 @@
camel_operation_progress(NULL, pc_complete);
}
d(printf(" read %d bytes\n", n));
- if (costream && camel_stream_write(costream, buffer, n) == -1) {
- camel_data_cache_remove(emfh_http_cache, EMFH_HTTP_CACHE_PATH, job->u.uri, NULL);
- camel_object_unref(costream);
- costream = NULL;
+ if (costream && camel_stream_write (costream, buffer, n) == -1) {
+ n = -1;
+ break;
}
camel_stream_write(job->stream, buffer, n);
- } else if (n < 0 && costream) {
- camel_data_cache_remove(emfh_http_cache, EMFH_HTTP_CACHE_PATH, job->u.uri, NULL);
- camel_object_unref(costream);
- costream = NULL;
}
} while (n>0);
@@ -551,8 +546,12 @@
if (n == 0)
camel_stream_close(job->stream);
- if (costream)
+ if (costream) {
+ /* do not store broken files in a cache */
+ if (n != 0)
+ camel_data_cache_remove(emfh_http_cache, EMFH_HTTP_CACHE_PATH, job->u.uri, NULL);
camel_object_unref(costream);
+ }
camel_object_unref(instream);
done:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]