Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@xxxxxxxxx> --- sha1_file.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sha1_file.c b/sha1_file.c index e98eb8b..ef6ecc8 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -605,7 +605,9 @@ static int check_packed_git_idx(const char *path, struct packed_git *p) } p->sha1_table = pack_map; p->sha1_table += 12; - } else + } else if (version == 2) + p->sha1_table = idx_map + 8 + 4 * 256; + else p->sha1_table = NULL; p->index_version = version; -- 1.8.2.83.gc99314b -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html