Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lib/http_client.c

    r0db6618 r5ebff60  
    162162        }
    163163
    164         if (req->func != NULL) {
    165                 req->func(req);
    166         }
     164        req->func(req);
    167165        http_free(req);
    168166        return FALSE;
     
    301299        }
    302300
    303         if (req->func != NULL) {
    304                 req->func(req);
    305         }
     301        req->func(req);
    306302        http_free(req);
    307303        return FALSE;
     
    416412        }
    417413
    418         if ((req->flags & HTTPC_STREAMING) && req->reply_body && req->func != NULL) {
     414        if ((req->flags & HTTPC_STREAMING) && req->reply_body) {
    419415                req->func(req);
    420416        }
     
    700696                ssl_disconnect(req->ssl);
    701697        } else {
    702                 proxy_disconnect(req->fd);
     698                closesocket(req->fd);
    703699        }
    704700
Note: See TracChangeset for help on using the changeset viewer.