Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/yahoo/yahoo.c

    r1febf5c rac4adf9  
    624624{
    625625        struct im_connection *ic = byahoo_get_ic_by_id( id );
    626         char *m = byahoo_strip( msg );
    627        
    628         imcb_buddy_msg( ic, (char*) who, (char*) m, 0, 0 );
    629         g_free( m );
     626        char *m;
     627       
     628        if( msg )
     629        {
     630                m = byahoo_strip( msg );
     631                imcb_buddy_msg( ic, (char*) who, (char*) m, 0, 0 );
     632                g_free( m );
     633        }
    630634}
    631635
Note: See TracChangeset for help on using the changeset viewer.