diff options
Diffstat (limited to 'list-objects.c')
-rw-r--r-- | list-objects.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/list-objects.c b/list-objects.c index cf9dbe23e4..0fb44e7ed7 100644 --- a/list-objects.c +++ b/list-objects.c @@ -169,7 +169,12 @@ void traverse_commit_list(struct rev_info *revs, strbuf_init(&base, PATH_MAX); while ((commit = get_revision(revs)) != NULL) { - add_pending_tree(revs, commit->tree); + /* + * an uninteresting boundary commit may not have its tree + * parsed yet, but we are not going to show them anyway + */ + if (commit->tree) + add_pending_tree(revs, commit->tree); show_commit(commit, data); } for (i = 0; i < revs->pending.nr; i++) { |