From ee62736a11acc4b699102a1260c6a8c5f57c1fef Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Wed, 15 Apr 2020 15:10:14 +0300 Subject: Fixed memory leak occurring upon failure to accept a connection. --- src/nxt_conn.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nxt_conn.h') diff --git a/src/nxt_conn.h b/src/nxt_conn.h index 2c1d49a0..a443601f 100644 --- a/src/nxt_conn.h +++ b/src/nxt_conn.h @@ -106,7 +106,7 @@ typedef struct { nxt_work_handler_t accept; nxt_listen_socket_t *listen; - nxt_conn_t *next; /* STUB */ + nxt_conn_t *next; nxt_work_queue_t *work_queue; nxt_timer_t timer; -- cgit