summaryrefslogtreecommitdiff
path: root/pack-bitmap.h
diff options
context:
space:
mode:
authorbrian m. carlson <sandals@crustytoothpaste.net>2019-02-19 00:04:54 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-04-01 02:57:37 (GMT)
commit0f4d6cada83dc6bd6b6b24dc0d2b3e6460c645cb (patch)
tree1f2f29232c58ef66350f6c8eef4fae77a35b8fd4 /pack-bitmap.h
parent5a8643eff1e59f1cf96da9875d5716e88f480710 (diff)
downloadgit-0f4d6cada83dc6bd6b6b24dc0d2b3e6460c645cb.zip
git-0f4d6cada83dc6bd6b6b24dc0d2b3e6460c645cb.tar.gz
git-0f4d6cada83dc6bd6b6b24dc0d2b3e6460c645cb.tar.bz2
pack-bitmap: make bitmap header handling hash agnostic
Increase the checksum field in struct bitmap_disk_header to be GIT_MAX_RAWSZ bytes in length and ensure that we hash the proper number of bytes out when computing the bitmap checksum. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pack-bitmap.h')
-rw-r--r--pack-bitmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pack-bitmap.h b/pack-bitmap.h
index 8418ba8..344ba23 100644
--- a/pack-bitmap.h
+++ b/pack-bitmap.h
@@ -14,7 +14,7 @@ struct bitmap_disk_header {
uint16_t version;
uint16_t options;
uint32_t entry_count;
- unsigned char checksum[20];
+ unsigned char checksum[GIT_MAX_RAWSZ];
};
static const char BITMAP_IDX_SIGNATURE[] = {'B', 'I', 'T', 'M'};