Merge branch 'as/shallow-slab-use-fix'

Correct code that tried to reference all entries in a sparse array
of pointers by mistake.

* as/shallow-slab-use-fix:
  shallow.c: don't free unallocated slabs
This commit is contained in:
Junio C Hamano 2019-10-09 14:00:59 +09:00
Родитель 0b4fae553c ddb3c856f3
Коммит 678a9ca629
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -156,6 +156,8 @@ struct commit_list *get_shallow_commits(struct object_array *heads, int depth,
for (i = 0; i < depths.slab_count; i++) { for (i = 0; i < depths.slab_count; i++) {
int j; int j;
if (!depths.slab[i])
continue;
for (j = 0; j < depths.slab_size; j++) for (j = 0; j < depths.slab_size; j++)
free(depths.slab[i][j]); free(depths.slab[i][j]);
} }