]> git.ipfire.org Git - thirdparty/git.git/commit
http-push: simplify deleting a list item
authorRené Scharfe <l.s.r@web.de>
Sun, 13 Oct 2019 12:49:17 +0000 (14:49 +0200)
committerJunio C Hamano <gitster@pobox.com>
Tue, 15 Oct 2019 01:53:50 +0000 (10:53 +0900)
commit5cc6a4be11644f3d302eee2e735261ace4cd1c4c
treeddccf37f6580d27971d2cc6229d4f39e2d53414b
parent5fa0f5238b0cd46cfe7f6fa76c3f526ea98148d9
http-push: simplify deleting a list item

The first step for deleting an item from a linked list is to locate the
item preceding it.  Be more careful in release_request() and handle an
empty list.  This only has consequences for invalid delete requests
(removing the same item twice, or deleting an item that was never added
to the list), but simplifies the loop condition as well as the check
after the loop.

Once we found the item's predecessor in the list, update its next
pointer to skip over the item, which removes it from the list.  In other
words: Make the item's successor the successor of its predecessor.
(At this point entry->next == request and prev->next == lock,
respectively.)  This is a bit simpler and saves a pointer dereference.

Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
http-push.c