talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 0ae08c27c278560b157259b62b09fb8244e96e53
parent fe13430b1687828b6b8c22672ea626dbd4812302
Author: Andrej Kacian <ticho@claws-mail.org>
Date:   Wed, 24 Apr 2019 07:57:47 +0200

Fix a blatant textbook case of use-after-free in rssyl_update_feed()

Diffstat:
Msrc/plugins/rssyl/rssyl_update_feed.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/plugins/rssyl/rssyl_update_feed.c b/src/plugins/rssyl/rssyl_update_feed.c @@ -256,7 +256,7 @@ gboolean rssyl_update_feed(RFolderItem *ritem, RSSylVerboseFlags verbose) g_free(ctx->error); g_free(ctx); STATUSBAR_POP(mainwin); - return ctx->success; + return FALSE; } rssyl_deleted_update(ritem);