Changeset d2b3f25
- Timestamp:
- 2014-10-27T08:05:44Z (10 years ago)
- Branches:
- master
- Children:
- 81186736
- Parents:
- fef97af (diff), b6bd99c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
dcc.c
rfef97af rd2b3f25 385 385 b_event_remove( df->watch_out ); 386 386 387 df->watch_in = 0; 388 387 389 if( df->proto_finished ) 388 390 dcc_finish( ft ); 389 391 390 df->watch_in = 0;391 392 return FALSE; 392 393 } -
lib/ftutil.c
rfef97af rd2b3f25 138 138 139 139 /* I hate static-length strings.. */ 140 host[HOST_NAME_MAX ] = '\0';140 host[HOST_NAME_MAX-1] = '\0'; 141 141 port[5] = '\0'; 142 142 -
lib/http_client.c
rfef97af rd2b3f25 211 211 212 212 if( req->inpa > 0 ) 213 { 213 214 b_event_remove( req->inpa ); 215 req->inpa = 0; 216 } 214 217 215 218 if( req->ssl ) -
protocols/jabber/s5bytestream.c
rfef97af rd2b3f25 123 123 124 124 if ( tf->watch_in ) 125 { 125 126 b_event_remove( tf->watch_in ); 127 tf->watch_in = 0; 128 } 126 129 127 130 if( tf->watch_out ) 131 { 128 132 b_event_remove( tf->watch_out ); 133 tf->watch_out = 0; 134 } 129 135 130 136 g_free( bt->pseudoadr ); -
protocols/jabber/si.c
rfef97af rd2b3f25 35 35 36 36 if ( tf->watch_in ) 37 { 37 38 b_event_remove( tf->watch_in ); 39 tf->watch_in = 0; 40 } 38 41 39 42 jd->filetransfers = g_slist_remove( jd->filetransfers, tf );
Note: See TracChangeset
for help on using the changeset viewer.