diff options
Diffstat (limited to '')
-rw-r--r-- | src/nxt_conn.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |