Changeset be7a180 for protocols/nogaim.c


Ignore:
Timestamp:
2010-08-12T22:38:30Z (15 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
b46769d
Parents:
ca7de3a
Message:

Proper responses to CHL challenges. Clean up bee_users before calling
prpl->logout() since the buddy_data functions would like some structs to
still exist.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.c

    rca7de3a rbe7a180  
    326326        imcb_log( ic, "Signing off.." );
    327327       
    328         b_event_remove( ic->keepalive );
    329         ic->keepalive = 0;
    330         ic->acc->prpl->logout( ic );
    331         b_event_remove( ic->inpa );
    332        
    333         g_free( ic->away );
    334         ic->away = NULL;
    335        
    336328        for( l = bee->users; l; )
    337329        {
     
    344336                l = next;
    345337        }
     338       
     339        b_event_remove( ic->keepalive );
     340        ic->keepalive = 0;
     341        ic->acc->prpl->logout( ic );
     342        b_event_remove( ic->inpa );
     343       
     344        g_free( ic->away );
     345        ic->away = NULL;
    346346       
    347347        query_del_by_conn( (irc_t*) ic->bee->ui_data, ic );
Note: See TracChangeset for help on using the changeset viewer.