diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2017-06-20 19:49:17 +0300 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2017-06-20 19:49:17 +0300 |
| commit | f888a5310c1808902b4035ca3454b62bc5cf4434 (patch) | |
| tree | 7425e11cdba27420d21468b0f79787834bd3c498 /src/nxt_buf_filter.c | |
| parent | c7ab908c19242a5ddd0233e123e8c2be210b3c02 (diff) | |
| download | unit-f888a5310c1808902b4035ca3454b62bc5cf4434.tar.gz unit-f888a5310c1808902b4035ca3454b62bc5cf4434.tar.bz2 | |
Using new memory pool implementation.
Diffstat (limited to 'src/nxt_buf_filter.c')
| -rw-r--r-- | src/nxt_buf_filter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_buf_filter.c b/src/nxt_buf_filter.c index fff11f96..83e5baa9 100644 --- a/src/nxt_buf_filter.c +++ b/src/nxt_buf_filter.c @@ -415,7 +415,7 @@ nxt_buf_filter_buf_completion(nxt_task_t *task, void *obj, void *data) fb = ctx->buf; - nxt_mem_cache_free0(f->mem_pool, ctx, sizeof(nxt_buf_filter_ctx_t)); + nxt_mp_free(f->mem_pool, ctx); nxt_buf_pool_free(&f->filter_file->buffers, b); if (fb->file_pos < fb->file_end) { |
