Changes in lib/http_client.c [0db6618:5ebff60]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/http_client.c
r0db6618 r5ebff60 162 162 } 163 163 164 if (req->func != NULL) { 165 req->func(req); 166 } 164 req->func(req); 167 165 http_free(req); 168 166 return FALSE; … … 301 299 } 302 300 303 if (req->func != NULL) { 304 req->func(req); 305 } 301 req->func(req); 306 302 http_free(req); 307 303 return FALSE; … … 416 412 } 417 413 418 if ((req->flags & HTTPC_STREAMING) && req->reply_body && req->func != NULL) {414 if ((req->flags & HTTPC_STREAMING) && req->reply_body) { 419 415 req->func(req); 420 416 } … … 700 696 ssl_disconnect(req->ssl); 701 697 } else { 702 proxy_disconnect(req->fd);698 closesocket(req->fd); 703 699 } 704 700
Note: See TracChangeset
for help on using the changeset viewer.