summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/pack.c5
-rw-r--r--src/pack.h1
2 files changed, 0 insertions, 6 deletions
diff --git a/src/pack.c b/src/pack.c
index 23fcf3530..de038a45c 100644
--- a/src/pack.c
+++ b/src/pack.c
@@ -997,11 +997,6 @@ int git_packfile_alloc(struct git_pack_file **pack_out, const char *path)
return -1;
}
- /* see if we can parse the sha1 oid in the packfile name */
- if (path_len < 40 ||
- git_oid_fromstr(&p->sha1, path + path_len - GIT_OID_HEXSZ) < 0)
- memset(&p->sha1, 0x0, GIT_OID_RAWSZ);
-
*pack_out = p;
return 0;
diff --git a/src/pack.h b/src/pack.h
index 28146ab30..58f81e2f0 100644
--- a/src/pack.h
+++ b/src/pack.h
@@ -88,7 +88,6 @@ struct git_pack_file {
int index_version;
git_time_t mtime;
unsigned pack_local:1, pack_keep:1, has_cache:1;
- git_oid sha1;
git_oidmap *idx_cache;
git_oid **oids;