From f888a5310c1808902b4035ca3454b62bc5cf4434 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Tue, 20 Jun 2017 19:49:17 +0300 Subject: Using new memory pool implementation. --- src/nxt_conn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nxt_conn.c') diff --git a/src/nxt_conn.c b/src/nxt_conn.c index 3f21747e..bba2bfd1 100644 --- a/src/nxt_conn.c +++ b/src/nxt_conn.c @@ -42,12 +42,12 @@ nxt_conn_io_t nxt_unix_conn_io = { nxt_conn_t * -nxt_conn_create(nxt_mem_pool_t *mp, nxt_task_t *task) +nxt_conn_create(nxt_mp_t *mp, nxt_task_t *task) { nxt_conn_t *c; nxt_thread_t *thr; - c = nxt_mem_zalloc(mp, sizeof(nxt_conn_t)); + c = nxt_mp_zget(mp, sizeof(nxt_conn_t)); if (nxt_slow_path(c == NULL)) { return NULL; } -- cgit