From a8cd9b417c1195075657ebaf99d792f4e92b99ac Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Fri, 27 Dec 2013 20:45:43 +0800 Subject: [PATCH] Fixed bug #66358 (fpm starts segfault) --- sapi/fpm/fpm/fpm_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sapi/fpm/fpm/fpm_main.c b/sapi/fpm/fpm/fpm_main.c index 91abfea959..3da603b401 100644 --- a/sapi/fpm/fpm/fpm_main.c +++ b/sapi/fpm/fpm/fpm_main.c @@ -1353,7 +1353,7 @@ static void init_request_info(TSRMLS_D) } else { SG(request_info).request_uri = env_script_name; } - free(real_path); + efree(real_path); } } else { /* pre 4.3 behaviour, shouldn't be used but provides BC */ -- 2.50.1