diff options
author | dequis <dx@dxzone.com.ar> | 2014-10-27 03:36:05 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2014-10-27 03:36:05 -0300 |
commit | 8256ad5ed0c545dfbfd0035d0bac8296ac224467 (patch) | |
tree | fad972b1a482a29b6d3a0d8affa9276ff44a57b8 /lib/http_client.c | |
parent | fef97af02332d5e7fd099dda8677870c75a406f2 (diff) |
Some more g_source_remove warning fixes
- http_incoming_data calling itself
- jabber_bs_free_transfer calling jabber_si_free_transfer
Diffstat (limited to 'lib/http_client.c')
-rw-r--r-- | lib/http_client.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/http_client.c b/lib/http_client.c index 18c393f8..590b8143 100644 --- a/lib/http_client.c +++ b/lib/http_client.c @@ -210,7 +210,10 @@ static gboolean http_incoming_data( gpointer data, int source, b_input_condition int st; if( req->inpa > 0 ) + { b_event_remove( req->inpa ); + req->inpa = 0; + } if( req->ssl ) { |