diff options
author | redfoxli <honghu069@163.com> | 2015-01-13 13:59:24 +0800 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2015-02-16 15:10:09 +0300 |
commit | 3664345abac75aabedfbca061b0b7db5915de085 (patch) | |
tree | 0205248702f4cd1f03ab2a8fe35dfcf811f5ee61 | |
parent | f86aa349eb068b6865c6d423054afe7f781f979e (diff) | |
download | php-git-3664345abac75aabedfbca061b0b7db5915de085.tar.gz |
fix bug #68822 (request time is reset too early)
this caused wrong time in the logs
-rw-r--r-- | sapi/fpm/fpm/fpm_request.c | 2 |
1 files changed, 0 insertions, 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); } /* }}} */ |