Re: [PATCH] http-push: simplify deleting a list item

2019-10-14 Thread Junio C Hamano
René Scharfe writes: > 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 w

[PATCH] http-push: simplify deleting a list item

2019-10-13 Thread René Scharfe
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), bu