﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	uname	nginx_version
1920	Potential Memory Leak in directory 'src/http/modules'. file 'ngx_http_fastcgi_module.c'	wp02855@…		"In reviewing source code in nginx-1.15.0, it would appear that there are some memory leaks in file 'ngx_http_fastcgi_module.c' which when functions in this file are called, the memory allocations are not released, leading to over-utilization of memory over time, the patch file is below:

--- ngx_http_fastcgi_module.c.orig      2019-12-12 13:49:38.030864200 -0800
+++ ngx_http_fastcgi_module.c   2019-12-12 13:51:01.906741300 -0800
@@ -722,6 +722,7 @@
 
     u->pipe = ngx_pcalloc(r->pool, sizeof(ngx_event_pipe_t));
     if (u->pipe == NULL) {
+       ngx_pfree(f);   /* release memory allocated to f */
         return NGX_HTTP_INTERNAL_SERVER_ERROR;
     }"	defect	closed	minor		nginx-module	1.15.x	duplicate	potential memory leak(s)		bill@foobar 4.4.0-18362-Microsoft #476-Microsoft Fri Nov 01 16:53:00 PST 2019 x86_64 GNU/Linux 	nginx -V: version 1.15.0 (using static analysis of source code) 
