Changeset eabc9d2 for protocols/nogaim.c
- Timestamp:
- 2010-04-11T22:49:32Z (15 years ago)
- Branches:
- master
- Children:
- 6c56f42
- Parents:
- d986463
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/nogaim.c
rd986463 reabc9d2 327 327 ic->away = NULL; 328 328 329 for( l = bee->users; l; l = l->next)329 for( l = bee->users; l; ) 330 330 { 331 331 bee_user_t *bu = l->data; 332 GSList *next = l->next; 332 333 333 334 if( bu->ic == ic ) 334 bee_user_free( bee, ic, bu->handle ); 335 bee_user_free( bee, bu ); 336 337 l = next; 335 338 } 336 339 … … 403 406 void imcb_remove_buddy( struct im_connection *ic, const char *handle, char *group ) 404 407 { 405 bee_user_free( ic->bee, ic, handle);408 bee_user_free( ic->bee, bee_user_by_handle( ic->bee, ic, handle ) ); 406 409 } 407 410
Note: See TracChangeset
for help on using the changeset viewer.