diff options
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); |