Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAli Utku Selen <auselen@gmail.com>2019-10-01 02:33:10 +0300
committerJunio C Hamano <gitster@pobox.com>2019-10-02 09:03:47 +0300
commitddb3c856f32fe291b52544e177d2246c09cadd2c (patch)
treeb8c3949b28c5213de07bf33ba831d3a2a2f8b8f6 /shallow.c
parent98cdfbb84ad2ed6a2eb43dafa357a70a4b0a0fad (diff)
shallow.c: don't free unallocated slabs
Fix possible segfault when cloning a submodule shallow. Signed-off-by: Ali Utku Selen <auselen@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'shallow.c')
-rw-r--r--shallow.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/shallow.c b/shallow.c
index c1b68533ca..8de0bad2a5 100644
--- a/shallow.c
+++ b/shallow.c
@@ -148,6 +148,8 @@ struct commit_list *get_shallow_commits(struct object_array *heads, int depth,
for (i = 0; i < depths.slab_count; i++) {
int j;
+ if (!depths.slab[i])
+ continue;
for (j = 0; j < depths.slab_size; j++)
free(depths.slab[i][j]);
}