Changeset d68365c


Ignore:
Timestamp:
2010-11-20T15:39:58Z (13 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
bb151f7
Parents:
1074806
Message:

D'oh. Obviously, only look at MSN buddies when checking the MSN contact list.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/soap.c

    r1074806 rd68365c  
    879879                struct msn_buddy_data *bd = bu->data;
    880880               
    881                 if( bu->ic == soap_req->ic )
     881                if( bu->ic == soap_req->ic && bd )
     882                {
    882883                        msn_buddy_ask( bu );
    883                
    884                 if( ( bd->flags & ( MSN_BUDDY_AL | MSN_BUDDY_BL ) ) ==
    885                                   ( MSN_BUDDY_AL | MSN_BUDDY_BL ) )
    886                 {
    887                         bd->flags &= ~MSN_BUDDY_BL;
    888                         wtf++;
     884                       
     885                        if( ( bd->flags & ( MSN_BUDDY_AL | MSN_BUDDY_BL ) ) ==
     886                                          ( MSN_BUDDY_AL | MSN_BUDDY_BL ) )
     887                        {
     888                                bd->flags &= ~MSN_BUDDY_BL;
     889                                wtf++;
     890                        }
    889891                }
    890892        }
Note: See TracChangeset for help on using the changeset viewer.