midx: don't free midx_name early
commit7240cc4b65b6684c403487889cce396e45ad30cd
authorTaylor Blau <me@ttaylorr.com>
Tue, 30 Mar 2021 15:04:14 +0000 (30 11:04 -0400)
committerJunio C Hamano <gitster@pobox.com>
Thu, 1 Apr 2021 20:07:37 +0000 (1 13:07 -0700)
treee8bd5d5fbf5c48e15be070092db588aa15caabc5
parent9218c6a40c37023a1f434222d501218cf8157857
midx: don't free midx_name early

A subsequent patch will need to refer back to 'midx_name' later on in
the function. In fact, this variable is already free()'d later on, so
this makes the later free() no longer redundant.

Signed-off-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
midx.c