[PATCH] Bugfix: initialize pack_base to NULL.
authorJunio C Hamano <junkio@cox.net>
Tue, 28 Jun 2005 21:55:16 +0000 (14:55 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Tue, 28 Jun 2005 22:12:25 +0000 (15:12 -0700)
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>
sha1_file.c

index 6e3fd18..5c6e964 100644 (file)
@@ -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;
 }