[Commits] [SCM] claws branch, master, updated. 3.17.4-15-gb6a157f74
ticho at claws-mail.org
ticho at claws-mail.org
Wed Aug 28 23:02:11 CEST 2019
The branch, master has been updated
via b6a157f746a0d8a4e23127d7e048f600d1009a01 (commit)
from b2f41bf229b3836e75919366e9837d46223f1ea5 (commit)
Summary of changes:
src/plugins/rssyl/rssyl.c | 4 ++++
1 file changed, 4 insertions(+)
- Log -----------------------------------------------------------------
commit b6a157f746a0d8a4e23127d7e048f600d1009a01
Author: Andrej Kacian <ticho at claws-mail.org>
Date: Wed Aug 28 22:59:46 2019 +0200
Initialize some missing members in rssyl_item_new()
Among other things, this should fix the occasional
glib runtime warning about removing an invalid GSource.
diff --git a/src/plugins/rssyl/rssyl.c b/src/plugins/rssyl/rssyl.c
index e6cc6e338..bb1ea4f9c 100644
--- a/src/plugins/rssyl/rssyl.c
+++ b/src/plugins/rssyl/rssyl.c
@@ -436,6 +436,7 @@ static FolderItem *rssyl_item_new(Folder *folder)
ritem->official_title = NULL;
ritem->source_id = NULL;
ritem->items = NULL;
+ ritem->deleted_items = NULL;
ritem->keep_old = TRUE;
ritem->default_refresh_interval = TRUE;
ritem->refresh_interval = atoi(PREF_DEFAULT_REFRESH);
@@ -446,6 +447,9 @@ static FolderItem *rssyl_item_new(Folder *folder)
ritem->silent_update = 0;
ritem->last_update = 0;
ritem->ignore_title_rename = FALSE;
+ ritem->ssl_verify_peer = TRUE;
+ ritem->feedprop = NULL;
+ ritem->refresh_id = 0;
return (FolderItem *)ritem;
}
-----------------------------------------------------------------------
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list