diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-01-14 16:32:18 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-01-14 16:32:18 +0100 |
commit | 6cf0a9e9fc90be167c3b2e0cda1ec67909c89ca7 (patch) | |
tree | 9304a2af6e54ba14d1f80a5524429a45800e2e42 /graph.c | |
parent | Merge branch 'as/api-allocation-doc' into maint (diff) | |
parent | graph.c: infinite loop in git whatchanged --graph -m (diff) | |
download | git-6cf0a9e9fc90be167c3b2e0cda1ec67909c89ca7.tar.xz git-6cf0a9e9fc90be167c3b2e0cda1ec67909c89ca7.zip |
Merge branch 'mk/maint-graph-infinity-loop' into maint
* mk/maint-graph-infinity-loop:
graph.c: infinite loop in git whatchanged --graph -m
Diffstat (limited to 'graph.c')
-rw-r--r-- | graph.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1227,7 +1227,7 @@ void graph_show_commit(struct git_graph *graph) if (!graph) return; - while (!shown_commit_line) { + while (!shown_commit_line && !graph_is_commit_finished(graph)) { shown_commit_line = graph_next_line(graph, &msgbuf); fwrite(msgbuf.buf, sizeof(char), msgbuf.len, stdout); if (!shown_commit_line) |