diff options
author | Igor Sysoev <igor@sysoev.ru> | 2019-02-18 17:28:55 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2019-02-18 17:28:55 +0300 |
commit | bb11e9036f8c5bf6f36899bb462709bdbf55bfa4 (patch) | |
tree | 6ed21cd366676750836fb853728cec03b8a6bfe8 /src/nxt_http.h | |
parent | 2a6b54c23020a24eaadfb4006235ca17dfa877f8 (diff) | |
download | unit-bb11e9036f8c5bf6f36899bb462709bdbf55bfa4.tar.gz unit-bb11e9036f8c5bf6f36899bb462709bdbf55bfa4.tar.bz2 |
Fixed memory leak on response body sending failure.
Diffstat (limited to '')
-rw-r--r-- | src/nxt_http.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nxt_http.h b/src/nxt_http.h index b2111f90..10c6a9f1 100644 --- a/src/nxt_http.h +++ b/src/nxt_http.h @@ -176,7 +176,6 @@ nxt_buf_t *nxt_http_buf_mem(nxt_task_t *task, nxt_http_request_t *r, size_t size); nxt_buf_t *nxt_http_buf_last(nxt_http_request_t *r); void nxt_http_request_error_handler(nxt_task_t *task, void *obj, void *data); -void nxt_http_request_close_handler(nxt_task_t *task, void *obj, void *data); nxt_int_t nxt_http_request_host(void *ctx, nxt_http_field_t *field, uintptr_t data); |