evolution-rss r403 - in trunk: . src
- From: lucilanga svn gnome org
- To: svn-commits-list gnome org
- Subject: evolution-rss r403 - in trunk: . src
- Date: Tue, 28 Oct 2008 19:16:07 +0000 (UTC)
Author: lucilanga
Date: Tue Oct 28 19:16:07 2008
New Revision: 403
URL: http://svn.gnome.org/viewvc/evolution-rss?rev=403&view=rev
Log:
2008-10-28 Lucian Langa <lucilanga gnome org>
* src/rss.c: (finish_image) fix error
when using libsoup <= 2.2
* src/gecko-utils.c: (gecko_shutdown) keep
ProcessExit around for evo < 2.23
* src/rss.c: (taskbar_op_new) kill warning
* src/rss.c: controls add back and forward
buttons when browsing
* src/rss.c: correctly process browser
stop request
Modified:
trunk/ChangeLog
trunk/src/rss.c
Modified: trunk/src/rss.c
==============================================================================
--- trunk/src/rss.c (original)
+++ trunk/src/rss.c Tue Oct 28 19:16:07 2008
@@ -3682,10 +3682,11 @@
finish_image (SoupSession *soup_sess, SoupMessage *msg, CamelStream *user_data)
#endif
{
- if (msg->response_body->data) {
#if LIBSOUP_VERSION < 2003000
+ if (msg->response.data) {
camel_stream_write(user_data, msg->response.body, msg->response.length);
#else
+ if (msg->response_body->data) {
camel_stream_write(user_data, msg->response_body->data, msg->response_body->length);
#endif
camel_stream_close(user_data);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]