Changeset 911d97a
- Timestamp:
- 2011-08-04T15:19:54Z (13 years ago)
- Branches:
- master
- Children:
- 7732193
- Parents:
- f988ad3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_im.c
rf988ad3 r911d97a 451 451 { 452 452 irc_user_t *iu = data; 453 char *msg = g_string_free( iu->pastebuf, FALSE );453 char *msg; 454 454 GSList *l; 455 456 msg = g_string_free( iu->pastebuf, FALSE ); 457 iu->pastebuf = NULL; 458 iu->pastebuf_timer = 0; 455 459 456 460 for( l = irc_plugins; l; l = l->next ) … … 479 483 480 484 g_free( msg ); 481 iu->pastebuf = NULL;482 iu->pastebuf_timer = 0;483 485 484 486 return FALSE; -
protocols/jabber/jabber.c
rf988ad3 r911d97a 319 319 imcb_error( ic, "OAuth failure" ); 320 320 imc_logout( ic, TRUE ); 321 return 0; 321 322 } 322 323 } -
protocols/jabber/sasl.c
rf988ad3 r911d97a 448 448 { 449 449 struct im_connection *ic = data; 450 imcb_remove_buddy( ic, "jabber_oauth", NULL ); 450 if( g_slist_find( jabber_connections, ic ) ) 451 imcb_remove_buddy( ic, "jabber_oauth", NULL ); 451 452 return FALSE; 452 453 }
Note: See TracChangeset
for help on using the changeset viewer.