]> git.ipfire.org Git - thirdparty/git.git/commit
sha1_object_info: examine cached_object store too
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>
Sat, 5 Feb 2011 14:03:02 +0000 (21:03 +0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 7 Feb 2011 23:05:48 +0000 (15:05 -0800)
commitc4d9986f5f35c22010ed6dd58351b89fd4ee0def
tree2fbf11d3af6db6718393f7f4f9d96176c97c9e50
parentc597ba801048be45d168b1f6335e91bab165448f
sha1_object_info: examine cached_object store too

Cached object store was added in d66b37b (Add pretend_sha1_file()
interface. - 2007-02-04) as a way to temporarily inject some objects
to object store.

But only read_sha1_file() knows about this store. While it will return
an object from this store, sha1_object_info() will happily say
"object not found".

Teach sha1_object_info() about the cached store for consistency.

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