summaryrefslogtreecommitdiff
path: root/reflog-walk.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-03-18 20:51:04 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-03-18 20:51:05 (GMT)
commit006f678780e816a2540628e5473b0eea199d0b61 (patch)
tree4c04de7d0d430e586935ad9f54656740227c27d9 /reflog-walk.c
parentda2e0579adad88136b8a0a850d7325c398a401ac (diff)
parent50546b15ed1df25837f8b291e6fa5bbcdb84635e (diff)
downloadgit-006f678780e816a2540628e5473b0eea199d0b61.zip
git-006f678780e816a2540628e5473b0eea199d0b61.tar.gz
git-006f678780e816a2540628e5473b0eea199d0b61.tar.bz2
Merge branch 'sh/use-hashcpy'
* sh/use-hashcpy: Use hashcpy() when copying object names
Diffstat (limited to 'reflog-walk.c')
-rw-r--r--reflog-walk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/reflog-walk.c b/reflog-walk.c
index 2899729..0dd5084 100644
--- a/reflog-walk.c
+++ b/reflog-walk.c
@@ -28,8 +28,8 @@ static int read_one_reflog(unsigned char *osha1, unsigned char *nsha1,
ALLOC_GROW(array->items, array->nr + 1, array->alloc);
item = array->items + array->nr;
- memcpy(item->osha1, osha1, 20);
- memcpy(item->nsha1, nsha1, 20);
+ hashcpy(item->osha1, osha1);
+ hashcpy(item->nsha1, nsha1);
item->email = xstrdup(email);
item->timestamp = timestamp;
item->tz = tz;