pack-objects: no crc check when the cached version is used
commit77965f8b29f8311c42a0a770693dd0f8411e84db
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>
Fri, 13 Sep 2013 11:03:00 +0000 (13 18:03 +0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 13 Sep 2013 18:28:33 +0000 (13 11:28 -0700)
tree3db16333b84e7f2b3f4231acf65f3b51f68e7511
parente230c568c4b9a991e3175e5f65171a566fd8e39c
pack-objects: no crc check when the cached version is used

Current code makes pack-objects always do check_pack_crc() in
unpack_entry() even if right after that we find out there's a cached
version and pack access is not needed. Swap two code blocks, search
for cached version first, then check crc.

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sha1_file.c