about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-11-22 01:49:55 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2018-11-25 06:01:34 +0100
commit441dac1d747dab43e3559ee68f18a273512064cd (patch)
tree180bc56f1095b26b3ad423789e69a76d42a8d996
parentauth-filter: pass url with query string attached (diff)
downloadcgit-magenta-441dac1d747dab43e3559ee68f18a273512064cd.tar.xz
ui-blame: set repo for sb
Otherwise recent git complains and crashes with: "BUG: blame.c:1787:
repo is NULL".

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r--ui-blame.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui-blame.c b/ui-blame.c

index 6dc555f..c52cb9b 100644 --- a/ui-blame.c +++ b/ui-blame.c
@@ -131,6 +131,7 @@ static void print_object(const struct object_id *oid, const char *path, setup_revisions(rev_argv.argc, rev_argv.argv, &revs, NULL); init_scoreboard(&sb); sb.revs = &revs; + sb.repo = the_repository; setup_scoreboard(&sb, path, &o); o->suspects = blame_entry_prepend(NULL, 0, sb.num_lines, o); prio_queue_put(&sb.commits, o->commit);