Ronnie Sahlberg [off-list ref] writes:
int commit_ref_lock(struct ref_lock *lock)
{
+ if (lock->delete_ref) {
+ int flag = lock->delete_flag;
+
+ if (!(flag & REF_ISPACKED) || flag & REF_ISSYMREF) {
+ /* loose */
+ int err, i = strlen(lock->lk->filename) - 5; /* .lock */
+
+ lock->lk->filename[i] = 0;
+ err = unlink_or_warn(lock->lk->filename);
+ lock->lk->filename[i] = '.';
+ if (err && errno != ENOENT)
+ return 1;
+ }
+ } else
if (!lock->skipped_write && commit_ref(lock)) {
} else if (...) {
Also the previous patch indents the above "if" line in the context
with spaces; please use a tab.