diff options
Diffstat (limited to '')
-rw-r--r-- | src/nxt_port_memory.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nxt_port_memory.c b/src/nxt_port_memory.c index 71ab1d60..9f27ab09 100644 --- a/src/nxt_port_memory.c +++ b/src/nxt_port_memory.c @@ -191,7 +191,6 @@ nxt_port_incoming_port_mmap(nxt_task_t *task, nxt_process_t *process, fd, process->pid); port_mmap = NULL; - hdr = NULL; if (fstat(fd, &mmap_stat) == -1) { nxt_log(task, NXT_LOG_WARN, "fstat(%FD) failed %E", fd, nxt_errno); @@ -214,6 +213,8 @@ nxt_port_incoming_port_mmap(nxt_task_t *task, nxt_process_t *process, if (nxt_slow_path(mmap_handler == NULL)) { nxt_log(task, NXT_LOG_WARN, "failed to allocate mmap_handler"); + nxt_mem_munmap(mem, PORT_MMAP_SIZE); + return NULL; } |