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>2023-09-13 20:07:56 +0300
committerJunio C Hamano <gitster@pobox.com>2023-09-13 20:07:57 +0300
commit331f20d52df2fd5eb4bea4a9e14a368472f32819 (patch)
tree2aa5b04125bfde2d26ea07e9723f80251a8aea0f /bulk-checkin.c
parentc52a02a0f0025df0e83ba00dc469df0dc8838b5e (diff)
parente0b8c84240037a592c5bd5f18fc382a98a323bea (diff)
Merge branch 'ew/hash-with-openssl-evp'
Fix-up new-ish code to support OpenSSL EVP API. * ew/hash-with-openssl-evp: treewide: fix various bugs w/ OpenSSL 3+ EVP API
Diffstat (limited to 'bulk-checkin.c')
-rw-r--r--bulk-checkin.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/bulk-checkin.c b/bulk-checkin.c
index 73bff3a23d..92b9c8598b 100644
--- a/bulk-checkin.c
+++ b/bulk-checkin.c
@@ -268,6 +268,7 @@ static int deflate_to_pack(struct bulk_checkin_packfile *state,
type, size);
the_hash_algo->init_fn(&ctx);
the_hash_algo->update_fn(&ctx, obuf, header_len);
+ the_hash_algo->init_fn(&checkpoint.ctx);
/* Note: idx is non-NULL when we are writing */
if ((flags & HASH_WRITE_OBJECT) != 0)