Browse Source

serious mistake in pop() (forgot to set c->prev to NULL on pop)

master
arg@10ksloc.org 18 years ago
parent
commit
0a4342098b
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      client.c

+ 1
- 0
client.c View File

@ -284,6 +284,7 @@ pop(Client *c)
c->next->prev = c->prev;
*l = c->next;
c->prev = NULL;
if(clients)
clients->prev = c;
c->next = clients;


Loading…
Cancel
Save