aboutsummaryrefslogtreecommitdiff
path: root/convert.c
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@redhat.com>2008-01-15 15:00:02 -0500
committerJunio C Hamano <gitster@pobox.com>2008-01-15 17:33:53 -0800
commit4439751dcbc3ba2fccae70626654f7950a7b298c (patch)
treeb3ad1d6be4b2b311a14da7685b617ff8e3571bcf /convert.c
parent1bc7c13af9f936aa80893100120b542338a10bf4 (diff)
downloadgit-4439751dcbc3ba2fccae70626654f7950a7b298c.tar.gz
git-4439751dcbc3ba2fccae70626654f7950a7b298c.tar.xz
git-commit: fix double close(2) that can close a wrong file descriptor
The codepath to prepare index files for the temporary and next index file was closing file descriptor it obtained from the lockfile API by hand, without letting the API know that the fd should not be doubly closed. This is not usually a problem (except it may get EBADFD) but if we opened another fd for an entirely unrelated purpose (say, an fd used to mmap a packfile) between the time we close the fd to the index file and the time we commit or rollback the lockfile (causing it to also try closing the recorded fd), the lockfile API will close an incorrect file descriptor that is still used for an entirely unrelated purpose. There's four close(fd) calls in prepare_index() and they're all incorrect. The open fd's are cleaned up in rollback_index_files() and shouldn't be closed manually. The patch below gets rid of the extra close() calls and should fix the problem. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'convert.c')
0 files changed, 0 insertions, 0 deletions