From: Jean-Philippe Orsini Date: Thu, 25 Apr 2013 08:42:00 +0000 (+0000) Subject: (no commit message) X-Git-Url: https://git.wpitchoune.net/gitweb/?p=prss.git;a=commitdiff_plain;h=cc1552eda67ca81b48eb611535719f4548c00c9c --- 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;