Changeset f86a3d5


Ignore:
Timestamp:
2008-09-01T10:21:01Z (16 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
d4810df
Parents:
35529ae
Message:

Fixed ugly looping bug in chatroom list cleanup code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • account.c

    r35529ae rf86a3d5  
    205205                       
    206206                        for( c = irc->chatrooms; c; c = nc )
     207                        {
     208                                nc = c->next;
    207209                                if( acc == c->acc )
    208                                 {
    209                                         nc = c->next;
    210210                                        chat_del( irc, c );
    211                                 }
     211                        }
    212212                       
    213213                        while( a->set )
Note: See TracChangeset for help on using the changeset viewer.