1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-09 12:36:08 +02:00

packfile: remove unused member from struct pack_entry

The sha1 member in struct pack_entry is unused except for one instance
in which we store a value in it.  Since nobody ever reads this value,
don't bother to compute it and remove the member from struct pack_entry.

Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
brian m. carlson 2018-05-02 00:25:32 +00:00 committed by Junio C Hamano
parent 6f13fd0ec6
commit c51c39418b
2 changed files with 0 additions and 2 deletions

View File

@ -1572,7 +1572,6 @@ struct pack_window {
struct pack_entry {
off_t offset;
unsigned char sha1[20];
struct packed_git *p;
};

View File

@ -1833,7 +1833,6 @@ static int fill_pack_entry(const unsigned char *sha1,
return 0;
e->offset = offset;
e->p = p;
hashcpy(e->sha1, sha1);
return 1;
}