projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
23676d4
)
[PATCH] Bugfix: initialize pack_base to NULL.
author
Junio C Hamano
<junkio@cox.net>
Tue, 28 Jun 2005 21:55:16 +0000
(14:55 -0700)
committer
Linus 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
patch
|
blob
|
history
diff --git
a/sha1_file.c
b/sha1_file.c
index
6e3fd18
..
5c6e964
100644
(file)
--- a/
sha1_file.c
+++ b/
sha1_file.c
@@
-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;
}