diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-03-18 13:51:04 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-03-18 13:51:05 -0700 |
commit | 006f678780e816a2540628e5473b0eea199d0b61 (patch) | |
tree | 4c04de7d0d430e586935ad9f54656740227c27d9 /reflog-walk.c | |
parent | da2e0579adad88136b8a0a850d7325c398a401ac (diff) | |
parent | 50546b15ed1df25837f8b291e6fa5bbcdb84635e (diff) | |
download | git-006f678780e816a2540628e5473b0eea199d0b61.tar.gz git-006f678780e816a2540628e5473b0eea199d0b61.tar.xz |
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 2899729a8..0dd5084fe 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; |