diff options
author | Lukas Sandström <lukass@etek.chalmers.se> | 2005-11-18 17:30:29 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-18 11:20:34 -0800 |
commit | 3afd169480f1970baeb54be639a496c71ff1e0a9 (patch) | |
tree | 6f0fa330ba627a11edc95423fdf23cbba3e1fac5 /pack-redundant.c | |
parent | c3e24a7d461abaacc16c014ee427b37ab0102ca7 (diff) | |
download | git-3afd169480f1970baeb54be639a496c71ff1e0a9.tar.gz git-3afd169480f1970baeb54be639a496c71ff1e0a9.tar.xz |
Fix bug introduced by the latest changes to git-pack-redundant
I forgot to initialize part of the pll struct when copying it.
Found by valgrind.
Signed-off-by: Lukas Sandström <lukass@etek.chalmers.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'pack-redundant.c')
-rw-r--r-- | pack-redundant.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pack-redundant.c b/pack-redundant.c index 51d7341b0..36556092c 100644 --- a/pack-redundant.c +++ b/pack-redundant.c @@ -439,7 +439,7 @@ void minimize(struct pack_list **min) break; /* ignore all larger permutations */ if (is_superset(perm->pl, missing)) { new_perm = xmalloc(sizeof(struct pll)); - new_perm->pl = perm->pl; + memcpy(new_perm, perm, sizeof(struct pll)); new_perm->next = perm_ok; perm_ok = new_perm; } |