Merge branch 'sh/use-hashcpy'
* sh/use-hashcpy: Use hashcpy() when copying object names
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user