Merge branch 'rs/grep-simpler-parse-object-or-die-call' into master

* rs/grep-simpler-parse-object-or-die-call:
  grep: avoid using oid_to_hex() with parse_object_or_die()
maint
Junio C Hamano 2020-07-30 21:34:30 -07:00
commit add0a35caa
1 changed files with 1 additions and 1 deletions

View File

@ -466,7 +466,7 @@ static int grep_submodule(struct grep_opt *opt,
struct strbuf base = STRBUF_INIT;

obj_read_lock();
object = parse_object_or_die(oid, oid_to_hex(oid));
object = parse_object_or_die(oid, NULL);
obj_read_unlock();
data = read_object_with_reference(&subrepo,
&object->oid, tree_type,