diff options
author | Martin Ågren <martin.agren@gmail.com> | 2017-10-05 22:32:07 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-10-06 10:07:18 +0900 |
commit | 02ae242fdde2ba8acb6b87e32df2b1e33786e78b (patch) | |
tree | f251cfa7b4c15c5fa52cc713d15299578235d58b /string-list.c | |
parent | tempfile: fix documentation on `delete_tempfile()` (diff) | |
download | tgif-02ae242fdde2ba8acb6b87e32df2b1e33786e78b.tar.xz |
checkout-index: simplify locking logic
`newfd` starts out negative. If we then take the lock, `newfd` will
become non-negative. We later check for exactly that property before
calling `write_locked_index()`. That is, we are simply using `newfd` as
a boolean to keep track of whether we took the lock or not. (We always
use `newfd` and `lock_file` together, so they really are mirroring each
other.)
Drop `newfd` and check with `is_lock_file_locked()` instead. While at
it, move the `static struct lock_file` into `cmd_checkout_index()` and
make it non-static. It is only used in this function, and after
076aa2cbd (tempfile: auto-allocate tempfiles on heap, 2017-09-05), we
can have lockfiles on the stack.
Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'string-list.c')
0 files changed, 0 insertions, 0 deletions