Skip to content

Commit

Permalink
Merge branch 'nd/unpack-entry-optim-in-pack-objects'
Browse files Browse the repository at this point in the history
* nd/unpack-entry-optim-in-pack-objects:
  pack-objects: no crc check when the cached version is used
  • Loading branch information
Jonathan Nieder committed Sep 25, 2013
2 parents 7f794aa + 77965f8 commit 87bcf14
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions sha1_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -2126,6 +2126,16 @@ void *unpack_entry(struct packed_git *p, off_t obj_offset,
int i;
struct delta_base_cache_entry *ent;

ent = get_delta_base_cache_entry(p, curpos);
if (eq_delta_base_cache_entry(ent, p, curpos)) {
type = ent->type;
data = ent->data;
size = ent->size;
clear_delta_base_cache_entry(ent);
base_from_cache = 1;
break;
}

if (do_check_packed_object_crc && p->index_version > 1) {
struct revindex_entry *revidx = find_pack_revindex(p, obj_offset);
unsigned long len = revidx[1].offset - obj_offset;
Expand All @@ -2140,16 +2150,6 @@ void *unpack_entry(struct packed_git *p, off_t obj_offset,
}
}

ent = get_delta_base_cache_entry(p, curpos);
if (eq_delta_base_cache_entry(ent, p, curpos)) {
type = ent->type;
data = ent->data;
size = ent->size;
clear_delta_base_cache_entry(ent);
base_from_cache = 1;
break;
}

type = unpack_object_header(p, &w_curs, &curpos, &size);
if (type != OBJ_OFS_DELTA && type != OBJ_REF_DELTA)
break;
Expand Down

0 comments on commit 87bcf14

Please sign in to comment.