diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-11-22 01:49:55 +0100 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-11-25 06:01:34 +0100 |
commit | 441dac1d747dab43e3559ee68f18a273512064cd (patch) | |
tree | 180bc56f1095b26b3ad423789e69a76d42a8d996 | |
parent | 898b9e19e0eacd67456ddcc91ff173055e1c0e99 (diff) | |
download | cgit-441dac1d747dab43e3559ee68f18a273512064cd.tar.gz cgit-441dac1d747dab43e3559ee68f18a273512064cd.tar.bz2 cgit-441dac1d747dab43e3559ee68f18a273512064cd.zip |
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.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); |