Use hashcpy() when copying object names

We invented hashcpy() to keep the abstraction of "object name"
behind it.  Use it instead of calling memcpy() with hard-coded
20-byte length when moving object names between pieces of memory.

Leave ppc/sha1.c as-is, because the function is about the SHA-1 hash
algorithm whose output is and will always be 20 bytes.

Helped-by: Michael Haggerty <mhagger@alum.mit.edu>
Helped-by: Duy Nguyen <pclouds@gmail.com>
Signed-off-by: Sun He <sunheehnus@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Sun He
2014-03-03 17:39:59 +08:00
committed by Junio C Hamano
parent 6ab4ae2b41
commit 50546b15ed
5 changed files with 6 additions and 6 deletions

2
refs.c
View File

@ -1222,7 +1222,7 @@ static int resolve_gitlink_packed_ref(struct ref_cache *refs,
if (ref == NULL)
return -1;
memcpy(sha1, ref->u.value.sha1, 20);
hashcpy(sha1, ref->u.value.sha1);
return 0;
}