Browse Source

[PATCH] Bugfix: initialize pack_base to NULL.

This was causing random segfaults, because use_packed_git() got
confused by random garbage there.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
maint
Junio C Hamano 20 years ago committed by Linus Torvalds
parent
commit
d85a4feeee
  1. 1
      sha1_file.c

1
sha1_file.c

@ -396,6 +396,7 @@ static struct packed_git *add_packed_git(char *path, int path_len) @@ -396,6 +396,7 @@ static struct packed_git *add_packed_git(char *path, int path_len)
p->pack_size = st.st_size;
p->index_base = idx_map;
p->next = NULL;
p->pack_base = NULL;
p->pack_last_used = 0;
return p;
}

Loading…
Cancel
Save