Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/pipeline/pass_githistory.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,8 @@ static int parse_git_log(const char *repo_path, commit_t **out, int *out_count)

/* Diff parent_tree → tree to find changed files */
git_diff *diff = NULL;
git_diff_options diff_opts = GIT_DIFF_OPTIONS_INIT;
git_diff_options diff_opts;
git_diff_options_init(&diff_opts, GIT_DIFF_OPTIONS_VERSION);
if (git_diff_tree_to_tree(&diff, repo, parent_tree, tree, &diff_opts) == 0) {
commit_t current = {0};

Expand Down