aboutsummaryrefslogtreecommitdiffstats
path: root/bundle.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-03-18 13:51:04 -0700
committerJunio C Hamano <gitster@pobox.com>2014-03-18 13:51:05 -0700
commit006f678780e816a2540628e5473b0eea199d0b61 (patch)
tree4c04de7d0d430e586935ad9f54656740227c27d9 /bundle.c
parentda2e0579adad88136b8a0a850d7325c398a401ac (diff)
parent50546b15ed1df25837f8b291e6fa5bbcdb84635e (diff)
downloadgit-006f678780e816a2540628e5473b0eea199d0b61.tar.gz
Merge branch 'sh/use-hashcpy'
* sh/use-hashcpy: Use hashcpy() when copying object names
Diffstat (limited to 'bundle.c')
-rw-r--r--bundle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundle.c b/bundle.c
index 1388a3e6fd..a85e0e4532 100644
--- a/bundle.c
+++ b/bundle.c
@@ -15,7 +15,7 @@ static void add_to_ref_list(const unsigned char *sha1, const char *name,
struct ref_list *list)
{
ALLOC_GROW(list->list, list->nr + 1, list->alloc);
- memcpy(list->list[list->nr].sha1, sha1, 20);
+ hashcpy(list->list[list->nr].sha1, sha1);
list->list[list->nr].name = xstrdup(name);
list->nr++;
}