提交 f361baeb 编写于 作者: M Michael Haggerty 提交者: Junio C Hamano

peel_ref(): use function get_packed_ref()

Signed-off-by: NMichael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: NJunio C Hamano <gitster@pobox.com>
上级 63331581
......@@ -1283,10 +1283,9 @@ int peel_ref(const char *refname, unsigned char *sha1)
return -1;
if ((flag & REF_ISPACKED)) {
struct ref_dir *dir = get_packed_refs(get_ref_cache(NULL));
struct ref_entry *r = find_ref(dir, refname);
struct ref_entry *r = get_packed_ref(refname);
if (r != NULL && r->flag & REF_KNOWS_PEELED) {
if (r && (r->flag & REF_KNOWS_PEELED)) {
hashcpy(sha1, r->u.value.peeled);
return 0;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册