delete_ref_loose(): derive loose reference path from lock

It is simpler to derive the path to the file that must be deleted from
"lock->ref_name" than from the lock_file object.

Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Reviewed-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Michael Haggerty 2017-01-06 17:22:38 +01:00 committed by Junio C Hamano
parent fc31955294
commit 0e81d016f1
1 changed files with 1 additions and 4 deletions

View File

@ -2430,10 +2430,7 @@ static int delete_ref_loose(struct ref_lock *lock, int flag, struct strbuf *err)
* loose. The loose file name is the same as the
* lockfile name, minus ".lock":
*/
char *loose_filename = get_locked_file_path(lock->lk);
int res = unlink_or_msg(loose_filename, err);
free(loose_filename);
if (res)
if (unlink_or_msg(git_path("%s", lock->ref_name), err))
return 1;
}
return 0;