projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2e67a5f
)
Fix a bug in get_all_permutations.
author
Lukas Sandström
<lukass@etek.chalmers.se>
Fri, 18 Nov 2005 21:53:24 +0000
(22:53 +0100)
committer
Junio C Hamano
<junkio@cox.net>
Fri, 18 Nov 2005 22:25:06 +0000
(14:25 -0800)
This line was missing in the previous patch for some reason.
Signed-off-by: Lukas Sandström <lukass@etek.chalmers.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
pack-redundant.c
patch
|
blob
|
history
diff --git
a/pack-redundant.c
b/pack-redundant.c
index
3655609
..
3e3f33a
100644
(file)
--- a/
pack-redundant.c
+++ b/
pack-redundant.c
@@
-291,6
+291,7
@@
struct pll * get_all_permutations(struct pack_list *list)
hint[0] = new_pll;
new_pll->next = NULL;
new_pll->pl = list;
+ new_pll->pl_size = 1;
return new_pll;
}