Fix infinite loop when deleting multiple packed refs.
commit1084b845d9d77bcb2e8255636358dd0dc35360a5
authorJunio C Hamano <junkio@cox.net>
Tue, 2 Jan 2007 19:19:05 +0000 (2 11:19 -0800)
committerJunio C Hamano <junkio@cox.net>
Wed, 3 Jan 2007 09:22:35 +0000 (3 01:22 -0800)
tree4605342374bdb48b94ddf67fe0f7a94714ad2d1e
parente6d40d65df07059fc655fabe62fa5b575ead7815
Fix infinite loop when deleting multiple packed refs.

It was stupid to link the same element twice to lock_file_list
and end up in a loop, so we certainly need a fix.

But it is not like we are taking a lock on multiple files in
this case.  It is just that we leave the linked element on the
list even after commit_lock_file() successfully removes the
cruft.

We cannot remove the list element in commit_lock_file(); if we
are interrupted in the middle of list manipulation, the call to
remove_lock_file_on_signal() will happen with a broken list
structure pointed by lock_file_list, which would cause the cruft
to remain, so not removing the list element is the right thing
to do.  Instead we should be reusing the element already on the
list.

There is already a code for that in lock_file() function in
lockfile.c.  The code checks lk->next and the element is linked
only when it is not already on the list -- which is incorrect
for the last element on the list (which has NULL in its next
field), but if you read the check as "is this element already on
the list?" it actually makes sense.  We do not want to link it
on the list again, nor we would want to set up signal/atexit
over and over.

Signed-off-by: Junio C Hamano <junkio@cox.net>
cache.h
lockfile.c
refs.c