all repos — cgit @ 2eea471a7821f1f8bf2a4ce61bb748dcb9f7fa17

a hyperfast web frontend for git written in c

ui-stats.c: set parent pointer to NULL after freeing it

We do this everywhere else, so we should be doing it here as well.

Signed-off-by: John Keeping <john@keeping.me.uk>
John Keeping john@keeping.me.uk
Sun, 27 Jul 2014 11:56:20 +0100
commit

2eea471a7821f1f8bf2a4ce61bb748dcb9f7fa17

parent

865afe0eb1b5e6485fe0f65472e6635266e393b1

1 files changed, 1 insertions(+), 0 deletions(-)

jump to
M ui-stats.cui-stats.c

@@ -246,6 +246,7 @@ while ((commit = get_revision(&rev)) != NULL) {

add_commit(&authors, commit, period); free_commit_buffer(commit); free_commit_list(commit->parents); + commit->parents = NULL; } return authors; }