]> git.ipfire.org Git - thirdparty/git.git/commit - read-cache.c
read-cache: fix mem-pool allocation for multi-threaded index loading
authorRené Scharfe <l.s.r@web.de>
Fri, 4 Sep 2020 17:33:55 +0000 (19:33 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sun, 6 Sep 2020 19:34:12 +0000 (12:34 -0700)
commitbcd2c5eedecf473fa6b15ebda798ce54bb3c75ea
tree55b9081509ef916894a7f037a22073120116546b
parentf87bf28483ae6db32b3ac246ff7081d64a608327
read-cache: fix mem-pool allocation for multi-threaded index loading

44c7e1a7e0 (mem-pool: use more standard initialization and finalization,
2020-08-15) moved the allocation of the mem-pool structure to callers.
It also added an allocation to load_cache_entries_threaded(), but for an
unrelated mem-pool.  Fix that by allocating the correct one instead --
the one that is initialized two lines later.

Reported-by: Sandor Bodo-Merle <sbodomerle@gmail.com>
Signed-off-by: René Scharfe <l.s.r@web.de>
Reviewed-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
read-cache.c