]> git.ipfire.org Git - thirdparty/git.git/commit - sequencer.c
sequencer: do not roll back lockfile unnecessarily
authorMartin Ågren <martin.agren@gmail.com>
Wed, 28 Feb 2018 19:07:58 +0000 (20:07 +0100)
committerJunio C Hamano <gitster@pobox.com>
Wed, 28 Feb 2018 19:15:51 +0000 (11:15 -0800)
commit350292a1efb38bbcd6255a424df6adbfe78910ac
tree5bd9c1233580c2d2bfffcfcacebf8906ab3fb0d9
parent5790d25881a60a1c3a780e997a59774e48c2c026
sequencer: do not roll back lockfile unnecessarily

If `commit_lock_file()` or `hold_lock_file_for_update()` fail, there is
no need to call `rollback_lock_file()` on the lockfile. It doesn't hurt
either, but it does make different callers in this file inconsistent,
which might be confusing.

While at it, remove a trailing '.' from a recurring error message.

Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sequencer.c