Patrick Steinhardt <ps@xxxxxx> writes: > We build several ref lists in git-fetch-pack(1), but never free them. > Fix those leaks. > > Signed-off-by: Patrick Steinhardt <ps@xxxxxx> > --- > builtin/fetch-pack.c | 20 ++++++++++++-------- > 1 file changed, 12 insertions(+), 8 deletions(-) Quite straight-forward. In addition to plugging leaks, the resulting code is much easier to reason about by avoiding the reuse of the variable.