diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-03-18 21:51:04 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-03-18 21:51:05 +0100 |
commit | 006f678780e816a2540628e5473b0eea199d0b61 (patch) | |
tree | 4c04de7d0d430e586935ad9f54656740227c27d9 /reflog-walk.c | |
parent | Merge branch 'mh/simplify-cache-tree-find' (diff) | |
parent | Use hashcpy() when copying object names (diff) | |
download | git-006f678780e816a2540628e5473b0eea199d0b61.tar.xz git-006f678780e816a2540628e5473b0eea199d0b61.zip |
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.c | 4 |
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; |