csum-file: fix missing buf pointer update
This would create broken pack archives for anything nontrivial.maint
parent
1f688557c0
commit
2700628e64
|
@ -58,6 +58,7 @@ int sha1write(struct sha1file *f, void *buf, unsigned int count)
|
|||
memcpy(f->buffer + offset, buf, nr);
|
||||
count -= nr;
|
||||
offset += nr;
|
||||
buf += nr;
|
||||
left -= nr;
|
||||
if (!left) {
|
||||
SHA1_Update(&f->ctx, f->buffer, offset);
|
||||
|
|
Loading…
Reference in New Issue