]> git.ipfire.org Git - thirdparty/git.git/commit - pack-bitmap.c
pack-bitmaps: plug memory leak, fix allocation size for recent_bitmaps
authorRené Scharfe <l.s.r@web.de>
Mon, 18 May 2015 23:24:09 +0000 (01:24 +0200)
committerJunio C Hamano <gitster@pobox.com>
Tue, 19 May 2015 16:31:09 +0000 (09:31 -0700)
commit599dc766e89fe4f964c197f8d109dfc2e3c890ba
treef09a09a6350f8ac6ad89df4c9cdbbca32dd4c2ee
parent52735a689270bb1de94eb3de198594b36caed9bb
pack-bitmaps: plug memory leak, fix allocation size for recent_bitmaps

Use an automatic variable for recent_bitmaps, an array of pointers.
This way we don't allocate too much and don't have to free the memory
at the end.  The old code over-allocated because it reserved enough
memory to store all of the structs it is only pointing to and never
freed it.  160 64-bit pointers take up 1280 bytes, which is not too
much to be placed on the stack.

MAX_XOR_OFFSET is turned into a preprocessor constant to make it
constant enough for use in an non-variable array declaration.

Noticed-by: Stefan Beller <stefanbeller@gmail.com>
Suggested-by: Jeff King <peff@peff.net>
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
pack-bitmap.c