Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-03-19 00:51:04 +0400
committerJunio C Hamano <gitster@pobox.com>2014-03-19 00:51:05 +0400
commit006f678780e816a2540628e5473b0eea199d0b61 (patch)
tree4c04de7d0d430e586935ad9f54656740227c27d9 /reflog-walk.c
parentda2e0579adad88136b8a0a850d7325c398a401ac (diff)
parent50546b15ed1df25837f8b291e6fa5bbcdb84635e (diff)
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 2899729a8c..0dd5084fe5 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;