aboutsummaryrefslogtreecommitdiffstats
path: root/ui-tree.c
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2020-03-14 08:55:46 +0100
committerFlorian Pritz <bluewind@xinu.at>2020-03-14 08:55:46 +0100
commit2cbdd90e0f8575eda6486b4bb06521d848eaa307 (patch)
treefc28a97fede3b74ae2cb2e778ffd4c0ae59c637b /ui-tree.c
parent6c66430e9658616e118d10af9c9ab48858a04e67 (diff)
parent55fa25adb097d2681607d8b0f51a0c393cc9af1a (diff)
downloadcgit-2cbdd90e0f8575eda6486b4bb06521d848eaa307.tar.gz
cgit-2cbdd90e0f8575eda6486b4bb06521d848eaa307.tar.xz
Merge branch 'master' of https://git.zx2c4.com/cgit into local
Diffstat (limited to 'ui-tree.c')
-rw-r--r--ui-tree.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/ui-tree.c b/ui-tree.c
index 84eb17d..1e4efb2 100644
--- a/ui-tree.c
+++ b/ui-tree.c
@@ -370,12 +370,14 @@ void cgit_print_tree(const char *rev, char *path)
walk_tree_ctx.curr_rev = xstrdup(rev);
if (path == NULL) {
- ls_tree(&commit->maybe_tree->object.oid, NULL, &walk_tree_ctx);
+ ls_tree(get_commit_tree_oid(commit), NULL, &walk_tree_ctx);
goto cleanup;
}
- read_tree_recursive(the_repository, commit->maybe_tree, "", 0, 0,
- &paths, walk_tree, &walk_tree_ctx);
+ read_tree_recursive(the_repository,
+ repo_get_commit_tree(the_repository, commit),
+ "", 0, 0,
+ &paths, walk_tree, &walk_tree_ctx);
if (walk_tree_ctx.state == 1)
ls_tail();
else if (walk_tree_ctx.state == 2)