diff options
author | Nicolas Pitre <nico@cam.org> | 2008-10-23 15:05:59 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-10-23 22:32:43 -0700 |
commit | 9ed19614d4afd86a8d51072ed34c2c44554c3b54 (patch) | |
tree | 515ec337460fc3e1c696c51c6dc02e11b82fb62b /index-pack.c | |
parent | 2b5c208f5bd371ea5527046384f9955dbbceb188 (diff) | |
download | git-9ed19614d4afd86a8d51072ed34c2c44554c3b54.tar.gz |
index-pack: don't leak leaf delta result
Another (but minor this time) fallout from commit 9441b61 (index-pack:
rationalize delta resolution code, 2008-10-17).
Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'index-pack.c')
-rw-r--r-- | index-pack.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/index-pack.c b/index-pack.c index f109a00270..7db7fbb56b 100644 --- a/index-pack.c +++ b/index-pack.c @@ -550,8 +550,10 @@ static void find_unresolved_deltas(struct base_data *base, find_delta_children(&base_spec, &ofs_first, &ofs_last); } - if (ref_last == -1 && ofs_last == -1) + if (ref_last == -1 && ofs_last == -1) { + free(base->data); return; + } link_base_data(prev_base, base); |