From 3664345abac75aabedfbca061b0b7db5915de085 Mon Sep 17 00:00:00 2001 From: redfoxli Date: Tue, 13 Jan 2015 13:59:24 +0800 Subject: [PATCH] fix bug #68822 (request time is reset too early) this caused wrong time in the logs --- sapi/fpm/fpm/fpm_request.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/sapi/fpm/fpm/fpm_request.c b/sapi/fpm/fpm/fpm_request.c index bf431a08d0..ed7e7a8890 100644 --- a/sapi/fpm/fpm/fpm_request.c +++ b/sapi/fpm/fpm/fpm_request.c @@ -221,8 +221,6 @@ void fpm_request_finished() /* {{{ */ proc->request_stage = FPM_REQUEST_FINISHED; proc->tv = now; - memset(&proc->accepted, 0, sizeof(proc->accepted)); - proc->accepted_epoch = 0; fpm_scoreboard_proc_release(proc); } /* }}} */ -- 2.40.0