mirror of
https://github.com/git-for-windows/git.git
synced 2026-06-29 05:54:10 -05:00
pack-objects: drop cast_size_t_to_ulong shims in try_delta()
Companion to the prior get_delta() cleanup, and the last try_delta() piece of the >4 GiB delta-path topic. Every consumer that the function's locals fed has now been widened: SIZE() / DELTA_SIZE() to size_t (prior topic), the mem_usage out-parameter and delta_cacheable() earlier in this series, and create_delta() / create_delta_index() in the immediately preceding commits. Widen the declaration of trg_size, src_size, sizediff, max_size and sz to size_t (delta_size joins them on the same line, removing the size_t delta_size line that the create_delta() widening commit added as a stop-gap), and drop the two sz_st bridge variables together with the surrounding cast_size_t_to_ulong() calls. The result is just "odb_read_object(&sz)" on both reads. Assisted-by: Opus 4.7 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This commit is contained in:
committed by
Git for Windows Build Agent
parent
da17ddcf28
commit
4a47d0787c
@@ -2801,8 +2801,7 @@ static int try_delta(struct unpacked *trg, struct unpacked *src,
|
||||
{
|
||||
struct object_entry *trg_entry = trg->entry;
|
||||
struct object_entry *src_entry = src->entry;
|
||||
unsigned long trg_size, src_size, sizediff, max_size, sz;
|
||||
size_t delta_size;
|
||||
size_t trg_size, src_size, delta_size, sizediff, max_size, sz;
|
||||
unsigned ref_depth;
|
||||
enum object_type type;
|
||||
void *delta_buf;
|
||||
@@ -2855,12 +2854,10 @@ static int try_delta(struct unpacked *trg, struct unpacked *src,
|
||||
|
||||
/* Load data if not already done */
|
||||
if (!trg->data) {
|
||||
size_t sz_st = 0;
|
||||
packing_data_lock(&to_pack);
|
||||
trg->data = odb_read_object(the_repository->objects,
|
||||
&trg_entry->idx.oid, &type,
|
||||
&sz_st);
|
||||
sz = cast_size_t_to_ulong(sz_st);
|
||||
&sz);
|
||||
packing_data_unlock(&to_pack);
|
||||
if (!trg->data)
|
||||
die(_("object %s cannot be read"),
|
||||
@@ -2872,12 +2869,10 @@ static int try_delta(struct unpacked *trg, struct unpacked *src,
|
||||
*mem_usage += sz;
|
||||
}
|
||||
if (!src->data) {
|
||||
size_t sz_st = 0;
|
||||
packing_data_lock(&to_pack);
|
||||
src->data = odb_read_object(the_repository->objects,
|
||||
&src_entry->idx.oid, &type,
|
||||
&sz_st);
|
||||
sz = cast_size_t_to_ulong(sz_st);
|
||||
&sz);
|
||||
packing_data_unlock(&to_pack);
|
||||
if (!src->data) {
|
||||
if (src_entry->preferred_base) {
|
||||
|
||||
Reference in New Issue
Block a user