diff-tree: avoid lookup_unknown_object
commitfa96082617e07d988103854fb96c5e92b7587e72
authorJeff King <peff@peff.net>
Sun, 13 Jul 2014 06:42:17 +0000 (13 02:42 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 14 Jul 2014 01:59:05 +0000 (13 18:59 -0700)
treee2b057838243a0e759fff2b2b7006ee618c81efb
parentd66bebcbcfa46d72bb5008e1d211c0ea87200d86
diff-tree: avoid lookup_unknown_object

We generally want to avoid lookup_unknown_object, because it
results in allocating more memory for the object than may be
strictly necessary.

In this case, it is used to check whether we have an
already-parsed object before calling parse_object, to save
us from reading the object from disk. Using lookup_object
would be fine for that purpose, but we can take it a step
further. Since this code was written, parse_object already
learned the "check lookup_object" optimization, so we can
simply call parse_object directly.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/diff-tree.c