Code

Merge branch 'sp/maint-pack-memuse' into maint
authorJunio C Hamano <gitster@pobox.com>
Wed, 16 Jul 2008 22:24:07 +0000 (15:24 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 16 Jul 2008 22:24:07 +0000 (15:24 -0700)
* sp/maint-pack-memuse:
  Correct pack memory leak causing git gc to try to exceed ulimit

sha1_file.c

index d1c406081e29eab9843a5268b611af1a3e014227..10346b681e3575d17945f64513e2b0fecbcc01fc 100644 (file)
@@ -1609,6 +1609,7 @@ static void *unpack_delta_entry(struct packed_git *p,
        off_t base_offset;
 
        base_offset = get_delta_base(p, w_curs, &curpos, *type, obj_offset);
+       unuse_pack(w_curs);
        base = cache_or_unpack_entry(p, base_offset, &base_size, type, 0);
        if (!base)
                die("failed to read delta base object"