summaryrefslogtreecommitdiffstats
path: root/refs.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-03-18 21:51:04 +0100
committerJunio C Hamano <gitster@pobox.com>2014-03-18 21:51:05 +0100
commit006f678780e816a2540628e5473b0eea199d0b61 (patch)
tree4c04de7d0d430e586935ad9f54656740227c27d9 /refs.c
parentMerge branch 'mh/simplify-cache-tree-find' (diff)
parentUse hashcpy() when copying object names (diff)
downloadgit-006f678780e816a2540628e5473b0eea199d0b61.tar.xz
git-006f678780e816a2540628e5473b0eea199d0b61.zip
Merge branch 'sh/use-hashcpy'
* sh/use-hashcpy: Use hashcpy() when copying object names
Diffstat (limited to 'refs.c')
-rw-r--r--refs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/refs.c b/refs.c
index f89d589182..28d5eca8ea 100644
--- a/refs.c
+++ b/refs.c
@@ -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;
}