From cc1552eda67ca81b48eb611535719f4548c00c9c Mon Sep 17 00:00:00 2001 From: Jean-Philippe Orsini Date: Thu, 25 Apr 2013 08:42:00 +0000 Subject: [PATCH] --- src/ttrss.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ttrss.c b/src/ttrss.c index 4ac5fdf..cc7a369 100644 --- a/src/ttrss.c +++ b/src/ttrss.c @@ -71,11 +71,11 @@ const char *ttrss_get_headline_content(struct headline *h) content = file_get_content(path); - if (content) - file_set_content(path, content); - else + if (!content) { content = ws_get_article_content(h->id); - + file_set_content(path, content); + } + g_free(path); return content; -- 2.7.4