Changeset 8256ad5 for protocols


Ignore:
Timestamp:
2014-10-27T06:36:05Z (9 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
b6bd99c
Parents:
fef97af
Message:

Some more g_source_remove warning fixes

  • http_incoming_data calling itself
  • jabber_bs_free_transfer calling jabber_si_free_transfer
Location:
protocols/jabber
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • protocols/jabber/s5bytestream.c

    rfef97af r8256ad5  
    123123
    124124        if ( tf->watch_in )
     125        {
    125126                b_event_remove( tf->watch_in );
     127                tf->watch_in = 0;
     128        }
    126129       
    127130        if( tf->watch_out )
     131        {
    128132                b_event_remove( tf->watch_out );
     133                tf->watch_out = 0;
     134        }
    129135       
    130136        g_free( bt->pseudoadr );
  • protocols/jabber/si.c

    rfef97af r8256ad5  
    3535
    3636        if ( tf->watch_in )
     37        {
    3738                b_event_remove( tf->watch_in );
     39                tf->watch_in = 0;
     40        }
    3841
    3942        jd->filetransfers = g_slist_remove( jd->filetransfers, tf );
Note: See TracChangeset for help on using the changeset viewer.