]> git.ipfire.org Git - thirdparty/git.git/commit
grep: handle deref_tag() returning NULL
authorRené Scharfe <l.s.r@web.de>
Sun, 11 Oct 2020 16:03:28 +0000 (18:03 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 12 Oct 2020 19:25:14 +0000 (12:25 -0700)
commite30b1525fb017e86e08931a911f5451bf24176f5
tree329664b34bbb539a400797e72d63a7308b5681b2
parentd4a392452e292ff924e79ec8458611c0f679d6d4
grep: handle deref_tag() returning NULL

deref_tag() can return NULL.  Exit gracefully in that case instead
of blindly dereferencing the return value.

.name shouldn't ever be NULL, but grep_object() handles that case
explicitly, so let's be defensive here as well and show the broken
object's ID if it happens to lack a name after all.

Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/grep.c