Changes in / [d2b3f25:fef97af]


Ignore:
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • dcc.c

    rd2b3f25 rfef97af  
    385385                                b_event_remove( df->watch_out );
    386386
    387                         df->watch_in = 0;
    388 
    389387                        if( df->proto_finished )
    390388                                dcc_finish( ft );
    391389
     390                        df->watch_in = 0;
    392391                        return FALSE;
    393392                }
  • lib/ftutil.c

    rd2b3f25 rfef97af  
    138138
    139139        /* I hate static-length strings.. */
    140         host[HOST_NAME_MAX-1] = '\0';
     140        host[HOST_NAME_MAX] = '\0';
    141141        port[5] = '\0';
    142142       
  • lib/http_client.c

    rd2b3f25 rfef97af  
    211211       
    212212        if( req->inpa > 0 )
    213         {
    214213                b_event_remove( req->inpa );
    215                 req->inpa = 0;
    216         }
    217214       
    218215        if( req->ssl )
  • protocols/jabber/s5bytestream.c

    rd2b3f25 rfef97af  
    123123
    124124        if ( tf->watch_in )
    125         {
    126125                b_event_remove( tf->watch_in );
    127                 tf->watch_in = 0;
    128         }
    129126       
    130127        if( tf->watch_out )
    131         {
    132128                b_event_remove( tf->watch_out );
    133                 tf->watch_out = 0;
    134         }
    135129       
    136130        g_free( bt->pseudoadr );
  • protocols/jabber/si.c

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