talons

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

commit 282fa50eaf5b4496f879f5debb3ce45db506987b
parent 543c7d33942ec31d4f81af6ecc0aa2aa28e85e7c
Author: Andrej Kacian <ticho@claws-mail.org>
Date:   Wed, 27 Jan 2016 18:16:15 +0100

Fix superfluous semicolons from 543c7d3.

Diffstat:
Msrc/plugins/rssyl/libfeed/feed.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/plugins/rssyl/libfeed/feed.c b/src/plugins/rssyl/libfeed/feed.c @@ -349,9 +349,9 @@ cleanup: XML_ParserFree(feed_ctx->parser); g_free(feed_ctx->name); g_free(feed_ctx->mail); - if (feed_ctx->str != NULL); + if (feed_ctx->str != NULL) g_string_free(feed_ctx->str, TRUE); - if (feed_ctx->xhtml_str != NULL); + if (feed_ctx->xhtml_str != NULL) g_string_free(feed_ctx->xhtml_str, TRUE); g_free(feed_ctx);