1
0
mirror of https://github.com/git/git.git synced 2024-09-28 01:43:24 +02:00

pack-bitmap-write: use GIT_MAX_RAWSZ for allocation

Reviewed-by: Stefan Beller <sbeller@google.com>
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-10-15 00:01:49 +00:00 committed by Junio C Hamano
parent 6afedba8c9
commit 825544a351

View File

@ -37,7 +37,7 @@ struct bitmap_writer {
struct progress *progress;
int show_progress;
unsigned char pack_checksum[20];
unsigned char pack_checksum[GIT_MAX_RAWSZ];
};
static struct bitmap_writer writer;