diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-08-31 10:03:50 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-08-31 10:03:50 -0700 |
commit | 4762bf36d9d4190dd7afdbc9ccc8bd8bc5af40f8 (patch) | |
tree | 99d9b401dbb6f5e27982ed9356a2820b84830bc3 /builtin | |
parent | Merge branch 'kw/patch-ids-optim' (diff) | |
parent | blame: fix segfault on untracked files (diff) | |
download | tgif-4762bf36d9d4190dd7afdbc9ccc8bd8bc5af40f8.tar.xz |
Merge branch 'mh/blame-worktree'
* mh/blame-worktree:
blame: fix segfault on untracked files
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/blame.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin/blame.c b/builtin/blame.c index 7ec7823430..a5bbf91e49 100644 --- a/builtin/blame.c +++ b/builtin/blame.c @@ -2244,7 +2244,8 @@ static void verify_working_tree_path(struct commit *work_tree, const char *path) pos = cache_name_pos(path, strlen(path)); if (pos >= 0) ; /* path is in the index */ - else if (!strcmp(active_cache[-1 - pos]->name, path)) + else if (-1 - pos < active_nr && + !strcmp(active_cache[-1 - pos]->name, path)) ; /* path is in the index, unmerged */ else die("no such path '%s' in HEAD", path); |