serious mistake in pop() (forgot to set c->prev to NULL on pop)
This commit is contained in:
parent
72707c2fae
commit
0a4342098b
1 changed files with 1 additions and 0 deletions
1
client.c
1
client.c
|
@ -284,6 +284,7 @@ pop(Client *c)
|
||||||
c->next->prev = c->prev;
|
c->next->prev = c->prev;
|
||||||
*l = c->next;
|
*l = c->next;
|
||||||
|
|
||||||
|
c->prev = NULL;
|
||||||
if(clients)
|
if(clients)
|
||||||
clients->prev = c;
|
clients->prev = c;
|
||||||
c->next = clients;
|
c->next = clients;
|
||||||
|
|
Loading…
Reference in a new issue