git.99rst.org
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
| inline |
side by side
(parent:
db7d07f
)
line-log: handle deref_tag() returning NULL
author
René Scharfe
<redacted>
Sun, 11 Oct 2020 16:03:40 +0000
(18:03 +0200)
committer
Junio C Hamano
<redacted>
Mon, 12 Oct 2020 19:25:14 +0000
(12:25 -0700)
Signed-off-by: René Scharfe <redacted>
Signed-off-by: Junio C Hamano <redacted>
line-log.c
patch
|
blob
|
history
diff --git
a/line-log.c
b/line-log.c
index 68eeb425f8adff845409d2f0f7f64118d97593a2..75c8b1acfff86508614321a83989e2940fc21d4b 100644
(file)
--- a/
line-log.c
+++ b/
line-log.c
@@
-481,7
+481,7
@@
static struct commit *check_single_commit(struct rev_info *revs)
if (obj->flags & UNINTERESTING)
continue;
obj = deref_tag(revs->repo, obj, NULL, 0);
- if (obj->type != OBJ_COMMIT)
+ if (
!obj ||
obj->type != OBJ_COMMIT)
die("Non commit %s?", revs->pending.objects[i].name);
if (commit)
die("More than one commit to dig from: %s and %s?",
git clone https://git.99rst.org/PROJECT