From: Jean-Philippe Orsini Date: Wed, 1 May 2013 14:12:26 +0000 (+0000) Subject: (no commit message) X-Git-Url: https://git.wpitchoune.net/gitweb/?p=prss.git;a=commitdiff_plain;h=a73efdf40d482a83aa23d793c3906e2e1802013b --- diff --git a/src/main.c b/src/main.c index fa5e38a..72770ff 100644 --- a/src/main.c +++ b/src/main.c @@ -396,7 +396,7 @@ int headline_cursor_changed_cbk(GtkTreeView *treeview, gpointer data) COL_HEADLINE_TITLE, headline->title, COL_HEADLINE_DATE, date, -1); - g_free(date); + free(date); } else { log_debug("headline not found"); } diff --git a/src/ttrss_ws.c b/src/ttrss_ws.c index 12595d3..1d52696 100644 --- a/src/ttrss_ws.c +++ b/src/ttrss_ws.c @@ -144,6 +144,8 @@ execute(struct http_session *sess, struct json_object *rq, char **err) json_object_put(rp); } + log_debug("execute() done"); + return content; }