From 9baf22e7bf2fe66efd85f7a402f5e71c51d6d768 Mon Sep 17 00:00:00 2001 From: Valentin Bartenev Date: Mon, 4 Oct 2021 15:33:04 +0300 Subject: [PATCH] Static: fixed possible descriptor leak introduced in a946d8cd7f8c. --- src/nxt_http_static.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nxt_http_static.c b/src/nxt_http_static.c index 06e0cab2..5380ff23 100644 --- a/src/nxt_http_static.c +++ b/src/nxt_http_static.c @@ -494,6 +494,7 @@ nxt_http_static_send_ready(nxt_task_t *task, void *obj, void *data) f = nxt_mp_get(r->mem_pool, sizeof(nxt_file_t)); if (nxt_slow_path(f == NULL)) { + nxt_file_close(task, &file); goto fail; }