reftable/stack: refactor stack reloading to have common exit path
commit3c94bd8dfb43d1e6f38184e34f4d5a0046dd00d7
authorPatrick Steinhardt <ps@pks.im>
Thu, 11 Jan 2024 10:06:39 +0000 (11 11:06 +0100)
committerJunio C Hamano <gitster@pobox.com>
Thu, 11 Jan 2024 20:10:59 +0000 (11 12:10 -0800)
tree3adc48f234c54895057d2b1486bc9ea9062406de
parenta26002b62827b89a19b1084bd75d9371d565d03c
reftable/stack: refactor stack reloading to have common exit path

The `reftable_stack_reload_maybe_reuse()` function is responsible for
reloading the reftable list from disk. The function is quite hard to
follow though because it has a bunch of different exit paths, many of
which have to free the same set of resources.

Refactor the function to have a common exit path. While at it, touch up
the style of this function a bit to match our usual coding style better.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
reftable/stack.c