From mboxrd@z Thu Jan 1 00:00:00 1970 From: john at keeping.me.uk (John Keeping) Date: Sun, 27 Jul 2014 11:56:20 +0100 Subject: [PATCH 3/3] ui-stats.c: set parent pointer to NULL after freeing it In-Reply-To: References: Message-ID: <859620c56fafcfacce7eed37d24f169b23941396.1406458339.git.john@keeping.me.uk> We do this everywhere else, so we should be doing it here as well. Signed-off-by: John Keeping --- ui-stats.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ui-stats.c b/ui-stats.c index 6f13c32..a264f6a 100644 --- a/ui-stats.c +++ b/ui-stats.c @@ -246,6 +246,7 @@ static struct string_list collect_stats(struct cgit_period *period) add_commit(&authors, commit, period); free_commit_buffer(commit); free_commit_list(commit->parents); + commit->parents = NULL; } return authors; } -- 2.0.1.472.g6f92e5f.dirty