talons

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

commit 9cdf381a9a7bfefde0957531a2972b3e05ba0947
parent 18bd82c8d833626d0edf033c9b313cfe7efe9a6e
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);