[Commits] [SCM] claws branch, master, updated. 3.14.0-75-g008fce7
ticho at claws-mail.org
ticho at claws-mail.org
Sun Sep 11 10:16:00 CEST 2016
The branch, master has been updated
via 008fce789faf4e440c9559e886daa5901eea1414 (commit)
from afc83c6030ba8fa21e9cf6ef41b37b63fbc71ec6 (commit)
Summary of changes:
src/plugins/rssyl/rssyl_update_comments.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
- Log -----------------------------------------------------------------
commit 008fce789faf4e440c9559e886daa5901eea1414
Author: Andrej Kacian <ticho at claws-mail.org>
Date: Sun Sep 11 10:15:41 2016 +0200
Fix an impossible crash to shut Coverity up.
diff --git a/src/plugins/rssyl/rssyl_update_comments.c b/src/plugins/rssyl/rssyl_update_comments.c
index 126847b..581d379 100644
--- a/src/plugins/rssyl/rssyl_update_comments.c
+++ b/src/plugins/rssyl/rssyl_update_comments.c
@@ -133,7 +133,9 @@ void rssyl_update_comments(RFolderItem *ritem)
}
}
- g_free(feedctx->path);
+ if (feedctx != NULL) {
+ g_free(feedctx->path);
+ }
feed_item_free(fi);
g_free(fname);
}
-----------------------------------------------------------------------
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list