- Timestamp:
- 2007-12-19T00:22:30Z (17 years ago)
- Branches:
- master
- Children:
- 0fbd3a6d
- Parents:
- eded1f7 (diff), de03374 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/jabber.c
reded1f7 r2379566 76 76 jd->username = g_strdup( acc->user ); 77 77 jd->server = strchr( jd->username, '@' ); 78 79 jd->fd = jd->r_inpa = jd->w_inpa = -1; 78 80 79 81 if( jd->server == NULL ) … … 232 234 struct jabber_data *jd = ic->proto_data; 233 235 234 jabber_end_stream( ic ); 236 if( jd->fd >= 0 ) 237 jabber_end_stream( ic ); 235 238 236 239 while( ic->groupchats ) … … 250 253 g_free( jd->txq ); 251 254 252 g_hash_table_destroy( jd->node_cache ); 255 if( jd->node_cache ) 256 g_hash_table_destroy( jd->node_cache ); 253 257 254 258 xt_free( jd->xt );
Note: See TracChangeset
for help on using the changeset viewer.