From: Taylor Blau Date: Tue, 30 Mar 2021 15:04:14 +0000 (-0400) Subject: midx: don't free midx_name early X-Git-Tag: v2.32.0-rc0~100^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7240cc4b65b6684c403487889cce396e45ad30cd;p=thirdparty%2Fgit.git 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 Signed-off-by: Junio C Hamano --- diff --git a/midx.c b/midx.c index b8f42bf31e..25bfb335ca 100644 --- a/midx.c +++ b/midx.c @@ -956,7 +956,6 @@ static int write_midx_internal(const char *object_dir, struct multi_pack_index * hold_lock_file_for_update(&lk, midx_name, LOCK_DIE_ON_ERROR); f = hashfd(get_lock_file_fd(&lk), get_lock_file_path(&lk)); - FREE_AND_NULL(midx_name); if (ctx.m) close_midx(ctx.m);