From 3b7496b7cee3289947f8ac921c374f2477455046 Mon Sep 17 00:00:00 2001 From: Douglas Clowes Date: Fri, 16 Mar 2007 09:03:13 +1100 Subject: [PATCH] bug in queue removal r1659 | dcl | 2007-03-16 09:03:13 +1100 (Fri, 16 Mar 2007) | 2 lines --- nwatch.c | 1 + 1 file changed, 1 insertion(+) diff --git a/nwatch.c b/nwatch.c index 0f048358..356950dc 100644 --- a/nwatch.c +++ b/nwatch.c @@ -271,6 +271,7 @@ static int NetWatchContextRemQue(pNetWatch self, pNWContext handle) pNxt->next = pNxt->next->next; break; } + pNxt = pNxt->next; } if (handle == self->cq_tail) /* if last */ self->cq_tail = pNxt;