Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/sb.c

    r8ba511d r1053836  
    202202        debug( "Destroying switchboard: %s", sb->who ? sb->who : sb->key ? sb->key : "" );
    203203       
     204        if( sb->key ) g_free( sb->key );
     205        if( sb->who ) g_free( sb->who );
     206       
    204207        if( sb->msgq )
    205208        {
     
    219222                serv_got_crap( gc, "Warning: Closing down MSN switchboard connection with "
    220223                                   "unsent message to %s, you'll have to resend it.",
    221                                    sb->who ? sb->who : "(unknown)" );
    222         }
    223        
    224         if( sb->key ) g_free( sb->key );
    225         if( sb->who ) g_free( sb->who );
     224                                   m->who ? m->who : "(unknown)" );
     225        }
    226226       
    227227        if( sb->chat )
Note: See TracChangeset for help on using the changeset viewer.