From 7b31f293867adeb404fd26558ec3095c3e787b65 Mon Sep 17 00:00:00 2001 From: Douglas Clowes Date: Fri, 9 Mar 2007 12:33:13 +1100 Subject: [PATCH] fix timer queue removal chain following r1618 | dcl | 2007-03-09 12:33:13 +1100 (Fri, 09 Mar 2007) | 2 lines --- nwatch.c | 1 + 1 file changed, 1 insertion(+) diff --git a/nwatch.c b/nwatch.c index 59e6d0eb..0f048358 100644 --- a/nwatch.c +++ b/nwatch.c @@ -136,6 +136,7 @@ static int NetWatchTimerRemQue(pNetWatch self, pNWTimer handle) pNxt->next = pNxt->next->next; break; } + pNxt = pNxt->next; } /* It it was the last entry, point tail to its predecessor */ if (handle == self->tq_tail)